Monotone-Parent: 3506bd18bc8c2147bebd7f22c05323ede7752c62

Monotone-Revision: 394b1692941b08185f4b0f87ec52bc7c0dc6c824

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-07-22T20:28:49
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2011-07-22 20:28:49 +00:00
parent 53c646a072
commit 6192f0d077
2 changed files with 24 additions and 7 deletions

View File

@@ -39,4 +39,24 @@
[self logWithFormat: @"unimplemented method: %@", NSStringFromSelector (_cmd)];
}
- (MAPIRestrictionState) evaluatePropertyRestriction: (struct mapi_SPropertyRestriction *) res
intoQualifier: (EOQualifier **) qualifier
{
MAPIRestrictionState rc;
id value;
value = NSObjectFromMAPISPropValue (&res->lpProp);
switch ((uint32_t) res->ulPropTag)
{
case PR_CHANGE_NUM:
[self warnWithFormat: @"!!!hack pending synchronisation enhancement"];
rc = MAPIRestrictionStateAlwaysTrue;
break;
default:
rc = [super evaluatePropertyRestriction: res intoQualifier: qualifier];
}
return rc;
}
@end