Monotone-Parent: e836d3ba228988acc21e87b16faa064ac0c357e4

Monotone-Revision: 8433690e83501187848cc751a754f1f1fdf2d8c5

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-11-09T14:58:17
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2011-11-09 14:58:17 +00:00
parent 13349e9868
commit 1fcc2c555a
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -1,5 +1,10 @@
2011-11-09 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIStoreVolatileMessage.m (-addProperties:):
transfer the content of the "properties" ivar instead of the
"newProperties" parameter, so as to benefit from treatment that
could have happened in parent classes.
* OpenChange/MAPIStoreMailVolatileMessage.m
(_generateMailDataWithBcc:): don't write the resulting mail body
to /tmp/mimegen.eml.
+1 -1
View File
@@ -83,7 +83,7 @@ Class NSNumberK;
- (void) addProperties: (NSDictionary *) newProperties
{
[super addProperties: newProperties];
[sogoObject appendProperties: newProperties];
[sogoObject appendProperties: properties];
[properties removeAllObjects];
ASSIGN (lastModificationTime, [NSDate date]);
}