Get rid of BOOL.

This commit is contained in:
Jonathan Schleifer 2013-06-23 21:54:12 +02:00
parent 7f5c58ffc7
commit cd292b53fa
23 changed files with 156 additions and 158 deletions

View file

@ -20,7 +20,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <stdint.h>
#import <ObjFW/OFObject.h>
@class OFString;
@class OFArray;
@ -31,9 +31,9 @@
- (void)setStringValue: (OFString*)string
forPath: (OFString*)path;
- (OFString*)stringValueForPath: (OFString*)path;
- (void)setBooleanValue: (BOOL)boolean
- (void)setBooleanValue: (bool)boolean
forPath: (OFString*)path;
- (BOOL)booleanValueForPath: (OFString*)path;
- (bool)booleanValueForPath: (OFString*)path;
- (void)setIntegerValue: (intmax_t)integer
forPath: (OFString*)path;
- (intmax_t)integerValueForPath: (OFString*)path;