Monotone-Parent: 7dff58db18a61d6233a3c330e59db7bf36157888

Monotone-Revision: 4138731669f6496c58a7c665ee66513f2b2304ab

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-08-08T19:04:53
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau 2011-08-08 19:04:53 +00:00
parent 0ab7e88a8a
commit fcc41a86ba
2 changed files with 10 additions and 3 deletions

View file

@ -1,5 +1,9 @@
2011-08-08 Wolfgang Sourdeau <wsourdeau@inverse.ca> 2011-08-08 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIStoreFolder.m (-lookupMessage:): set the WOContext
of the resulting SOGoObject to the value attached to the current
MAPIStoreContext.
* OpenChange/MAPIStoreCalendarMessageTable.m * OpenChange/MAPIStoreCalendarMessageTable.m
(-evaluatePropertyRestriction:intoQualifier:): implemented (-evaluatePropertyRestriction:intoQualifier:): implemented
searches on PR_OWNER_APPT_ID in order to enable the retrieval of searches on PR_OWNER_APPT_ID in order to enable the retrieval of

View file

@ -200,9 +200,12 @@ Class NSExceptionK, MAPIStoreFAIMessageK, MAPIStoreMessageTableK, MAPIStoreFAIMe
inContext: nil inContext: nil
acquire: NO]; acquire: NO];
if (msgObject && ![msgObject isKindOfClass: NSExceptionK]) if (msgObject && ![msgObject isKindOfClass: NSExceptionK])
childMessage {
= [[self messageClass] mapiStoreObjectWithSOGoObject: msgObject [msgObject setContext: [[self context] woContext]];
inContainer: self]; childMessage
= [[self messageClass] mapiStoreObjectWithSOGoObject: msgObject
inContainer: self];
}
} }
return childMessage; return childMessage;