Monotone-Parent: 130c60706cf2d64c1389d2675c1cffcb607d2717

Monotone-Revision: 110dbcea5d14646733928a01d28e5b2958b6421f

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-02-04T03:53:07
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2011-02-04 03:53:07 +00:00
parent a9b6bec242
commit bb69b7a657
3 changed files with 23 additions and 0 deletions

View File

@@ -1,5 +1,10 @@
2011-02-03 Ludovic Marcotte <lmarcotte@inverse.ca>
* SoObjects/SOGo/SOGoContentObject.m (-MAPIContent)
(-setMAPIContent:): new accessors for querying/modifying the new
"MAPIContent" ivar, as part of a hack to enable events to be
modified multiple times as one.
* OpenChange/MAPIStoreCalendarContext.m
(-openMessage:forKey:inTable:): overriden method to return
attendees as recipients.

View File

@@ -35,6 +35,7 @@
{
BOOL isNew;
NSString *content;
NSString *MAPIContent;
unsigned int version;
NSCalendarDate *creationDate;
NSCalendarDate *lastModified;
@@ -75,6 +76,10 @@
- (NSString *) davLastModified;
- (NSString *) davContentLength;
/* MAPI support */
- (NSString *) MAPIContent;
- (void) setMAPIContent: (NSString *) theContent;
@end
@interface SOGoContentObject (OptionalMethods)

View File

@@ -142,6 +142,7 @@
- (void) dealloc
{
[content release];
[MAPIContent release];
[creationDate release];
[lastModified release];
[super dealloc];
@@ -480,4 +481,16 @@
return @"<default>";
}
/* MAPI support */
- (NSString *) MAPIContent
{
return MAPIContent;
}
- (void) setMAPIContent: (NSString *) theContent
{
ASSIGN(MAPIContent, theContent);
}
@end /* SOGoContentObject */