Monotone-Parent: 6f77fc45fcd26193f857296861fb5fa0648c1e8e

Monotone-Revision: 25c0f3afc946800f9e114cf60bf63edd828745e3

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-02-09T22:47:51
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2011-02-09 22:47:51 +00:00
parent 6c0bef68bd
commit c54b4e1ecc
2 changed files with 6 additions and 7 deletions

View File

@ -1,3 +1,9 @@
2011-02-09 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIStoreMailMessageTable.m
(-getChildProperty:forKey:withTag:): removed non-unicode string
proptags.
2011-02-07 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIStoreNotesMessageTable.m

View File

@ -268,11 +268,8 @@ static EOQualifier *nonDeletedQualifier = nil;
break;
/* TODO: the following are supposed to be display names, separated by a semicolumn */
case PR_RECEIVED_BY_NAME:
case PR_RECEIVED_BY_NAME_UNICODE:
case PR_RCVD_REPRESENTING_NAME:
case PR_RCVD_REPRESENTING_NAME_UNICODE:
case PR_DISPLAY_TO:
case PR_DISPLAY_TO_UNICODE:
case PR_ORIGINAL_DISPLAY_TO_UNICODE:
child = [self lookupChild: childKey];
@ -281,7 +278,6 @@ static EOQualifier *nonDeletedQualifier = nil;
stringValue = @"";
*data = [stringValue asUnicodeInMemCtx: memCtx];
break;
case PR_DISPLAY_CC:
case PR_DISPLAY_CC_UNICODE:
case PR_ORIGINAL_DISPLAY_CC_UNICODE:
child = [self lookupChild: childKey];
@ -290,7 +286,6 @@ static EOQualifier *nonDeletedQualifier = nil;
stringValue = @"";
*data = [stringValue asUnicodeInMemCtx: memCtx];
break;
case PR_DISPLAY_BCC:
case PR_DISPLAY_BCC_UNICODE:
case PR_ORIGINAL_DISPLAY_BCC_UNICODE:
stringValue = @"";
@ -325,7 +320,6 @@ static EOQualifier *nonDeletedQualifier = nil;
}
break;
case PR_BODY:
case PR_BODY_UNICODE:
{
NSMutableArray *keys;
@ -434,7 +428,6 @@ static EOQualifier *nonDeletedQualifier = nil;
case PR_RTF_IN_SYNC:
*data = MAPIBoolValue (memCtx, NO);
break;
case PR_INTERNET_MESSAGE_ID:
case PR_INTERNET_MESSAGE_ID_UNICODE:
child = [self lookupChild: childKey];
*data = [[child messageId] asUnicodeInMemCtx: memCtx];