mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-26 05:45:24 +00:00
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:
@@ -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:].
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user