diff --git a/ChangeLog b/ChangeLog index 31930682a..3213fbd71 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2010-10-01 Wolfgang Sourdeau + + * SoObjects/SOGo/SOGoObject.m (-displayName): new accessor. + 2010-09-30 Wolfgang Sourdeau * UI/WebServerResources/UIxContactsUserFolders.js: diff --git a/SoObjects/SOGo/SOGoObject.h b/SoObjects/SOGo/SOGoObject.h index 5afa123a2..3502fc806 100644 --- a/SoObjects/SOGo/SOGoObject.h +++ b/SoObjects/SOGo/SOGoObject.h @@ -85,6 +85,7 @@ /* accessors */ - (NSString *) nameInContainer; +- (NSString *) displayName; - (id) container; - (NSURL *) davURL; diff --git a/SoObjects/SOGo/SOGoObject.m b/SoObjects/SOGo/SOGoObject.m index a0e52c75b..0b3493afc 100644 --- a/SoObjects/SOGo/SOGoObject.m +++ b/SoObjects/SOGo/SOGoObject.m @@ -204,6 +204,11 @@ return nameInContainer; } +- (NSString *) displayName +{ + return [self nameInContainer]; +} + - (id) container { return container; @@ -350,7 +355,7 @@ - (NSString *) davDisplayName { - return [self nameInContainer]; + return [self displayName]; } /* DAV ACL properties */