Monotone-Parent: 55c226ffd5db8ed7f07eb8591aded800a89418b2
Monotone-Revision: c3c980772004fa550702d469d6fbe729fd954f5d

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2012-02-20T22:25:49
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2012-02-20 22:25:49 +00:00
parent 5e1a8b3b58
commit c8fbb0718c
28 changed files with 252 additions and 4 deletions
+20
View File
@@ -621,6 +621,26 @@ NSString *SOGoWeekStartFirstFullWeek = @"FirstFullWeek";
return [self boolForKey: @"SOGoCalendarShouldDisplayWeekend"];
}
- (void) setCalendarEventsDefaultClassification: (NSString *) newValue
{
[self setObject: newValue forKey: @"SOGoCalendarEventsDefaultClassification"];
}
- (NSString *) calendarEventsDefaultClassification
{
return [self stringForKey: @"SOGoCalendarEventsDefaultClassification"];
}
- (void) setCalendarTasksDefaultClassification: (NSString *) newValue
{
[self setObject: newValue forKey: @"SOGoCalendarTasksDefaultClassification"];
}
- (NSString *) calendarTasksDefaultClassification
{
return [self stringForKey: @"SOGoCalendarTasksDefaultClassification"];
}
- (void) setReminderEnabled: (BOOL) newValue
{
[self setBool: newValue forKey: @"SOGoReminderEnabled"];