mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-04 21:08:51 +00:00
Monotone-Parent: 8f68fd83a48c51821eb064aa4f6738398e02e41d
Monotone-Revision: 47f011047becbfa93b21ffe7ca90810b1d9af684 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2010-06-08T13:35:25 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,5 +1,9 @@
|
||||
2010-06-08 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* SoObjects/Appointments/SOGoAppointmentFolderObject.m
|
||||
(-displayName, -davDisplayName): new accessors that are forwarded
|
||||
to the real folder object.
|
||||
|
||||
* UI/WebServerResources/UIxAclEditor.js: (onAclLoadHandler) we
|
||||
bind the "unload" event rather than "beforeunload", which does not
|
||||
seem to work on IE.
|
||||
|
||||
@@ -34,6 +34,8 @@
|
||||
|
||||
- (iCalCalendar *) contentCalendar;
|
||||
|
||||
- (NSString *) displayName;
|
||||
|
||||
@end
|
||||
|
||||
#endif /* SOGOAPPOINTMENTFOLDEROBJECT_H */
|
||||
|
||||
@@ -182,4 +182,14 @@
|
||||
return nil;
|
||||
}
|
||||
|
||||
- (NSString *) displayName
|
||||
{
|
||||
return [[self _folder] displayName];
|
||||
}
|
||||
|
||||
- (NSString *) davDisplayName
|
||||
{
|
||||
return [self displayName];
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
Reference in New Issue
Block a user