Monotone-Parent: facb5d4600a60a2bb140905284c1af0af3c2045a

Monotone-Revision: 0e67d5e5243429d84d07553a966befe16961db76

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-10-14T19:35:54
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2011-10-14 19:35:54 +00:00
parent 38d651dc51
commit 0da78c8a0c
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2011-10-14 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIStoreGCSMessageTable.m
(-evaluatePropertyRestriction:intoQualifier:): removed useless
condition to avoid warnings with certain versions of gcc.
2011-10-14 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/SOGoMailDataSource.js (load): associated a

View File

@ -109,7 +109,7 @@
property = [self backendIdentifierForProperty: res->ulPropTag];
if (property)
{
if (res->relop >= 0 && res->relop < 7)
if (res->relop < 7)
operator = operators[res->relop];
else
{