mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-07-07 09:25:09 +00:00
Monotone-Parent: 618681307a4cbc2f326ac0bdd3eb6077cb9a22f4
Monotone-Revision: 4adb09f9c02af62ea07b317c5c6a14100b8204e1 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2012-03-20T13:42:40 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2012-03-20 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* OpenChange/MAPIStoreTypes.m (MAPIChangeKeyGUIDCompare): NSData
|
||||
arguments passed as "id" due to the pickiness of some versions of
|
||||
gcc.
|
||||
|
||||
2012-03-19 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* Main/SOGo+DAV.m (_fillCollections:where:matches:inContext:):
|
||||
|
||||
@@ -43,7 +43,7 @@ id NSObjectFromMAPISPropValue (const struct mapi_SPropValue *);
|
||||
id NSObjectFromValuePointer (enum MAPITAGS, const void *);
|
||||
|
||||
NSComparisonResult MAPICNCompare (uint64_t cn1, uint64_t cn2, void *);
|
||||
NSComparisonResult MAPIChangeKeyGUIDCompare (NSData *ck1, NSData *ck2, void *);
|
||||
NSComparisonResult MAPIChangeKeyGUIDCompare (id ck1, id ck2, void *);
|
||||
|
||||
static inline NSNumber *
|
||||
MAPIPropertyKey (enum MAPITAGS propTag)
|
||||
|
||||
@@ -298,7 +298,8 @@ MAPICNCompare (uint64_t cn1, uint64_t cn2, void *unused)
|
||||
return result;
|
||||
}
|
||||
|
||||
NSComparisonResult MAPIChangeKeyGUIDCompare (NSData *ck1, NSData *ck2, void *unused)
|
||||
NSComparisonResult
|
||||
MAPIChangeKeyGUIDCompare (id ck1, id ck2, void *unused)
|
||||
{
|
||||
NSUInteger count;
|
||||
const unsigned char *ptr1, *ptr2;
|
||||
|
||||
Reference in New Issue
Block a user