From c96ae87f5b1abb4d03ee17da313fade9af626d68 Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Thu, 24 Feb 2011 20:38:01 +0000 Subject: [PATCH] Monotone-Parent: 93fe348dc7f21b1b581baf867024c1360d74faec Monotone-Revision: 23072776516ad7ec761501356d062052d748d8c7 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2011-02-24T20:38:01 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 5 +++++ OpenChange/SOGoMAPIFSMessage.h | 3 +++ OpenChange/SOGoMAPIFSMessage.m | 6 +++--- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index b175cd97d..19f563e20 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2011-02-24 Wolfgang Sourdeau + * 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) diff --git a/OpenChange/SOGoMAPIFSMessage.h b/OpenChange/SOGoMAPIFSMessage.h index 012f96d10..f23959605 100644 --- a/OpenChange/SOGoMAPIFSMessage.h +++ b/OpenChange/SOGoMAPIFSMessage.h @@ -26,6 +26,7 @@ #import @class NSDictionary; +@class NSMutableDictionary; @interface SOGoMAPIFSMessage : SOGoObject { @@ -33,6 +34,8 @@ } - (NSDictionary *) properties; +- (void) appendProperties: (NSDictionary *) newProperties; +- (void) save; @end diff --git a/OpenChange/SOGoMAPIFSMessage.m b/OpenChange/SOGoMAPIFSMessage.m index 3e74be617..8bdc96dbf 100644 --- a/OpenChange/SOGoMAPIFSMessage.m +++ b/OpenChange/SOGoMAPIFSMessage.m @@ -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];