Monotone-Parent: 30c81b4f13ebe8fe0c9c28588b0fca6366b0e3b2

Monotone-Revision: be4d354a53d48f0bb0000b543d31e805a289acd9

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2009-11-30T18:23:29
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2009-11-30 18:23:29 +00:00
parent 148ce32085
commit e4ef12a690
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ NSString *SOGoDefaultsSourceUnmutableSource = @"SOGoDefaultsSourceUnmutableSourc
- (void) setBool: (BOOL) value
forKey: (NSString *) key
{
[self setInteger: (value) ? 1: 0 forKey: key];
[self setInteger: (value ? 1: 0) forKey: key];
}
- (BOOL) boolForKey: (NSString *) key