From e4ad382b7285c0c177a294a99dfb7ee82dd6835c Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Fri, 10 Dec 2010 18:32:29 +0000 Subject: [PATCH] Monotone-Parent: 5d74c28ea0fcf5aa4d6ab7fc81f9bade5e4cfe5d Monotone-Revision: 4b8da7277df29ca5160321d7f33b46c3047e17a3 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2010-12-10T18:32:29 Monotone-Branch: ca.inverse.sogo --- SOPE/GDLContentStore/ChangeLog | 5 +++++ SOPE/GDLContentStore/EOQualifier+GCS.m | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/SOPE/GDLContentStore/ChangeLog b/SOPE/GDLContentStore/ChangeLog index 3fc7b7117..11cf10345 100644 --- a/SOPE/GDLContentStore/ChangeLog +++ b/SOPE/GDLContentStore/ChangeLog @@ -1,3 +1,8 @@ +2010-12-10 Wolfgang Sourdeau + + * EOQualifier+GCS.m (_appendKeyValueQualifier:toString:): fixed + evaluation to handle the "EOQualifierOperatorNotEqual" operator. + 2010-08-19 Wolfgang Sourdeau * GCSSpecialQueries.m (-createEMailAlarmsFolderWithName:): new sql diff --git a/SOPE/GDLContentStore/EOQualifier+GCS.m b/SOPE/GDLContentStore/EOQualifier+GCS.m index b874719e0..9dc485e28 100644 --- a/SOPE/GDLContentStore/EOQualifier+GCS.m +++ b/SOPE/GDLContentStore/EOQualifier+GCS.m @@ -119,7 +119,7 @@ qOperator = @"IS"; qValue = @"NULL"; } - else if (sel_eq(op, EOQualifierOperatorEqual)) { + else if (sel_eq(op, EOQualifierOperatorNotEqual)) { qOperator = @"IS NOT"; qValue = @"NULL"; }