Monotone-Parent: bb660a831898726081ef797a1c2e73f2306dc626

Monotone-Revision: 2ba6874cdb3084059ed1f87ba96e55335c0a6a64

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-02-07T23:19:02
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2011-02-07 23:19:02 +00:00
parent d6e60a9ba7
commit 53a2c5538a
6 changed files with 61 additions and 15 deletions

View File

@@ -156,9 +156,6 @@ static MAPIStoreMapping *mapping;
case PR_MSG_STATUS: // TODO
*data = MAPILongValue (memCtx, 0);
break;
case PR_SUBJECT_PREFIX_UNICODE: // TODO
*data = [@"" asUnicodeInMemCtx: memCtx];
break;
case PR_IMPORTANCE: // TODO -> subclass?
*data = MAPILongValue (memCtx, 1);
break;
@@ -186,9 +183,22 @@ static MAPIStoreMapping *mapping;
asShortBinaryInMemCtx: memCtx];
break;
case PR_SUBJECT_UNICODE:
rc = [self getChildProperty: data forKey: childKey
withTag: PR_NORMALIZED_SUBJECT_UNICODE];
withTag: PR_SUBJECT_UNICODE];
break;
case PR_ORIGINAL_SUBJECT_UNICODE:
case PR_CONVERSATION_TOPIC_UNICODE:
rc = [self getChildProperty: data forKey: childKey
withTag: PR_NORMALIZED_SUBJECT_UNICODE];
break;
case PR_SUBJECT_PREFIX_UNICODE:
*data = [@"" asUnicodeInMemCtx: memCtx];
break;
case PR_NORMALIZED_SUBJECT_UNICODE:
rc = [self getChildProperty: data forKey: childKey
withTag: PR_SUBJECT_UNICODE];
break;
case PR_DISPLAY_TO_UNICODE: