Monotone-Parent: d98519ee9416f281001d26da0a9ba8a76729997b

Monotone-Revision: feca1b329fdb19a68bf8372a1b89123aa849b31c

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-05-25T21:20:31
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2007-05-25 21:20:31 +00:00
parent a766f319ef
commit e3d4e1755a
3 changed files with 18 additions and 0 deletions
+4
View File
@@ -1,5 +1,9 @@
2007-05-25 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Mailer/SOGoMailAccount.m ([SOGoMailAccount
-sharedFolderName]): new method.
([SOGoMailAccount -otherUsersFolderName]): new method.
* UI/MailerUI/UIxMailFolderMenu.[hm]: removed module, obsoleted by
new javascript code and the new UIxMailAccountActions class.
+4
View File
@@ -69,6 +69,10 @@
- (SOGoMailFolder *)sentFolderInContext:(id)_ctx;
- (SOGoMailFolder *)trashFolderInContext:(id)_ctx;
/* user defaults */
- (NSString *) sharedFolderName;
- (NSString *) otherUsersFolderName;
@end
#endif /* __Mailer_SOGoMailAccount_H__ */
+10
View File
@@ -418,4 +418,14 @@ static BOOL useAltNamespace = NO;
return [self shortTitle];
}
- (NSString *) sharedFolderName
{
return sharedFolderName;
}
- (NSString *) otherUsersFolderName
{
return otherUsersFolderName;
}
@end /* SOGoMailAccount */