Monotone-Parent: db3ff379bf0dfa3a35ae5cbe879d8db2a1bb69df

Monotone-Revision: 6b21c5d6a2344cfc87d185eafecf40f3d4c29c8c

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-05-03T18:41:02
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2007-05-03 18:41:02 +00:00
parent 3c3de79b4d
commit 498df147d4
3 changed files with 11 additions and 7 deletions
+4
View File
@@ -1,5 +1,9 @@
2007-05-03 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Appointments/SOGoCalendarComponent.m
([SOGoCalendarComponent -rolesOfUser:login]): removed method that
was previously commented out.
* SoObjects/SOGo/SOGoUser.m ([SOGoUser -systemEmail]): new method
forwared to [AgenorUserManager getSystemEmailForUID:].
+2 -2
View File
@@ -46,7 +46,7 @@
{
NSString *cn;
NSString *email;
NSString *systemEmail;
NSString *systemEMail;
NSUserDefaults *userDefaults;
NSUserDefaults *userSettings;
NSTimeZone *userTimeZone;
@@ -58,7 +58,7 @@
/* properties */
- (NSString *) email;
- (NSString *) systemEmail;
- (NSString *) systemEMail;
- (NSString *) cn;
- (NSURL *) freeBusyURL;
+5 -5
View File
@@ -111,15 +111,15 @@ static NSTimeZone *serverTimeZone = nil;
return email;
}
- (NSString *) systemEmail
- (NSString *) systemEMail
{
if (!systemEmail)
if (!systemEMail)
{
systemEmail = [[self userManager] getSystemEmailForUID: [self login]];
[systemEmail retain];
systemEMail = [[self userManager] getSystemEmailForUID: [self login]];
[systemEMail retain];
}
return systemEmail;
return systemEMail;
}
- (NSString *) cn