Monotone-Parent: fb65b0d0f170c30fcadecf001ad33a8fc79e9e89

Monotone-Revision: 794a50b6a0041893b3ec57a38bbb3a7bbf1dee9c

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-01-15T15:31:38
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2010-01-15 15:31:38 +00:00
parent bd6edc2243
commit fb1a0448af
2 changed files with 13 additions and 4 deletions
+9
View File
@@ -1,3 +1,12 @@
2010-01-15 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/SOGoUserSettings.m
(-setCalendarProxyUsers:withWriteAccess:)
(calendarProxyUsersWithWriteAccess:)
(setCalendarProxySubscriptionUsers:withWriteAccess:)
(calendarProxySubscriptionUsersWithWriteAccess:): "Read" and
"Write" were inverted.
2010-01-14 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Appointments/SOGoAppointmentFolder.m
+4 -4
View File
@@ -79,7 +79,7 @@ static Class SOGoUserProfileKlass = Nil;
NSString *key;
key = [NSString stringWithFormat: @"CalendarProxy%@Users",
(writeAccess ? @"Read" : @"Write")];
(writeAccess ? @"Write" : @"Read")];
[self setObject: proxyUsers forKey: key];
}
@@ -89,7 +89,7 @@ static Class SOGoUserProfileKlass = Nil;
NSString *key;
key = [NSString stringWithFormat: @"CalendarProxy%@Users",
(writeAccess ? @"Read" : @"Write")];
(writeAccess ? @"Write" : @"Read")];
return [self arrayForKey: key];
}
@@ -101,7 +101,7 @@ static Class SOGoUserProfileKlass = Nil;
NSString *key;
key = [NSString stringWithFormat: @"CalendarProxy%@SubscriptionUsers",
(writeAccess ? @"Read" : @"Write")];
(writeAccess ? @"Write" : @"Read")];
[self setObject: subscriptionUsers forKey: key];
}
@@ -111,7 +111,7 @@ static Class SOGoUserProfileKlass = Nil;
NSString *key;
key = [NSString stringWithFormat: @"CalendarProxy%@SubscriptionUsers",
(writeAccess ? @"Read" : @"Write")];
(writeAccess ? @"Write" : @"Read")];
return [self arrayForKey: key];
}