Monotone-Parent: d6705d8dd1250d749b03b17d0e2cd2f84e97f49a

Monotone-Revision: 353341fbefbec06fd82685f146d83bc9bf269172

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-07-27T22:01:16
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2011-07-27 22:01:16 +00:00
parent b0a89c368c
commit 091e7552a5
2 changed files with 18 additions and 14 deletions

View File

@ -1,5 +1,9 @@
2011-07-27 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIStoreContactsMessage.m: commented out
"-getPrOabName:inMemCtx:" and "-getPrOabLangid:inMemCtx:" as they
seem to be useful only for contact lists.
* OpenChange/MAPIStoreFolder.m
(-faiMessageKeysMatchingQualifier:andSortOrderings:):
reimplemented method to make use of the new method below.

View File

@ -66,23 +66,23 @@
return MAPISTORE_SUCCESS;
}
- (int) getPrOabName: (void **) data
inMemCtx: (TALLOC_CTX *) memCtx
{
*data = talloc_strdup (memCtx, "PR_OAB_NAME_UNICODE");
// - (int) getPrOabName: (void **) data
// inMemCtx: (TALLOC_CTX *) memCtx
// {
// *data = talloc_strdup (memCtx, "PR_OAB_NAME_UNICODE");
return MAPISTORE_SUCCESS;
}
// return MAPISTORE_SUCCESS;
// }
- (int) getPrOabLangid: (void **) data
inMemCtx: (TALLOC_CTX *) memCtx
{
/* see http://msdn.microsoft.com/en-us/goglobal/bb895996.asxp */
/* English US */
*data = MAPILongValue (memCtx, 0x0409);
// - (int) getPrOabLangid: (void **) data
// inMemCtx: (TALLOC_CTX *) memCtx
// {
// /* see http://msdn.microsoft.com/en-us/goglobal/bb895996.asxp */
// /* English US */
// *data = MAPILongValue (memCtx, 0x0409);
return MAPISTORE_SUCCESS;
}
// return MAPISTORE_SUCCESS;
// }
- (int) getPrTitle: (void **) data
inMemCtx: (TALLOC_CTX *) memCtx