Monotone-Parent: 93fe348dc7f21b1b581baf867024c1360d74faec

Monotone-Revision: 23072776516ad7ec761501356d062052d748d8c7

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-02-24T20:38:01
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2011-02-24 20:38:01 +00:00
parent cd3354f2b0
commit c96ae87f5b
3 changed files with 11 additions and 3 deletions

View File

@ -1,5 +1,10 @@
2011-02-24 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/SOGoMAPIFSMessage.m (-appendProperties:): new name
for "setMAPIProperties:"
(-save): new name for "MAPISave", since those were methods
ususally found in the obsolete category modules.
* OpenChange/MAPIStoreSOGo.m:
(sogo_pocop_get_attachment_table, sogo_pocop_get_attachment)
(sogo_pocop_create_attachment, sogo_pocop_set_table_columns)

View File

@ -26,6 +26,7 @@
#import <SOGo/SOGoObject.h>
@class NSDictionary;
@class NSMutableDictionary;
@interface SOGoMAPIFSMessage : SOGoObject
{
@ -33,6 +34,8 @@
}
- (NSDictionary *) properties;
- (void) appendProperties: (NSDictionary *) newProperties;
- (void) save;
@end

View File

@ -67,7 +67,7 @@
return properties;
}
- (void) setMAPIProperties: (NSDictionary *) newProperties
- (void) appendProperties: (NSDictionary *) newProperties
{
NSArray *keys;
NSString *key;
@ -87,12 +87,12 @@
}
}
- (void) MAPISave
- (void) save
{
NSArray *pathComponents;
NSString *filePath;
[self logWithFormat: @"-MAPISave"];
[self logWithFormat: @"-save"];
[container ensureDirectory];