Monotone-Parent: 7dff58db18a61d6233a3c330e59db7bf36157888

Monotone-Revision: 4138731669f6496c58a7c665ee66513f2b2304ab

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-08-08T19:04:53
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
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>
* OpenChange/MAPIStoreFolder.m (-lookupMessage:): set the WOContext
of the resulting SOGoObject to the value attached to the current
MAPIStoreContext.
* OpenChange/MAPIStoreCalendarMessageTable.m
(-evaluatePropertyRestriction:intoQualifier:): implemented
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
acquire: NO];
if (msgObject && ![msgObject isKindOfClass: NSExceptionK])
childMessage
= [[self messageClass] mapiStoreObjectWithSOGoObject: msgObject
inContainer: self];
{
[msgObject setContext: [[self context] woContext]];
childMessage
= [[self messageClass] mapiStoreObjectWithSOGoObject: msgObject
inContainer: self];
}
}
return childMessage;