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

@ -154,7 +154,7 @@
return string;
}
- (void)setBooleanValue: (BOOL)boolean
- (void)setBooleanValue: (bool)boolean
forPath: (OFString*)path
{
OFAutoreleasePool *pool = [OFAutoreleasePool new];
@ -165,10 +165,10 @@
[pool release];
}
- (BOOL)booleanValueForPath: (OFString*)path
- (bool)booleanValueForPath: (OFString*)path
{
OFAutoreleasePool *pool = [OFAutoreleasePool new];
BOOL boolean;
bool boolean;
boolean = [[self XMPP_objectForPath: path] boolValue];