mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-04 21:08:51 +00:00
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:
@@ -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.
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user