summaryrefslogtreecommitdiff
path: root/libopie2
authorzecke <zecke>2005-06-27 18:08:35 (UTC)
committer zecke <zecke>2005-06-27 18:08:35 (UTC)
commitcecffa1dc3a7bd1526be00e7bc4a4a151e6f2c9c (patch) (unidiff)
treef1507ae7e0ba8d3c41e0381b84827c97823edeca /libopie2
parent058e3b6b0bc8f29314ee794bf7e993ebf3bfe072 (diff)
downloadopie-cecffa1dc3a7bd1526be00e7bc4a4a151e6f2c9c.zip
opie-cecffa1dc3a7bd1526be00e7bc4a4a151e6f2c9c.tar.gz
opie-cecffa1dc3a7bd1526be00e7bc4a4a151e6f2c9c.tar.bz2
-Fix compile warning (signed vs unsigned)
-Somehow the split up patches missed the query string... (I knew I would mess up)
Diffstat (limited to 'libopie2') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiepim/backend/ocontactaccessbackend_sql.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/libopie2/opiepim/backend/ocontactaccessbackend_sql.cpp b/libopie2/opiepim/backend/ocontactaccessbackend_sql.cpp
index 6aaa14c..f684f8c 100644
--- a/libopie2/opiepim/backend/ocontactaccessbackend_sql.cpp
+++ b/libopie2/opiepim/backend/ocontactaccessbackend_sql.cpp
@@ -650,3 +650,3 @@ UIDArray OPimContactAccessBackend_SQL::queryByExample ( const UIDArray& uidlist,
650 // if ( searchQuery.endsWith( "AND" ) ) 650 // if ( searchQuery.endsWith( "AND" ) )
651 if ( searchQuery.findRev( "AND" ) == ( searchQuery.length() - 3 ) ){ 651 if ( searchQuery.findRev( "AND" ) == static_cast<int>( searchQuery.length() - 3 ) ){
652 odebug << "remove AND" << oendl; 652 odebug << "remove AND" << oendl;
@@ -875,2 +875,8 @@ UIDArray OPimContactAccessBackend_SQL::sorted( const UIDArray& ar, bool asc, int
875 break; 875 break;
876 case OPimContactAccess::SortBirthdayWithoutYear:
877 query += " substr(\"Birthday\", 6, 10)";
878 break;
879 case OPimContactAccess::SortAnniversaryWithoutYear:
880 query += " substr(\"Anniversary\", 6, 10)";
881 break;
876 default: 882 default: