[SCM] ktp-kded-integration-module packaging branch, master, updated. debian/15.12.1-2-382-gbd961c2

Maximiliano Curia maxy at moszumanska.debian.org
Sat May 28 00:15:57 UTC 2016


Gitweb-URL: http://git.debian.org/?p=pkg-kde/applications/ktp-kded-module.git;a=commitdiff;h=ae51ab0

The following commit has been merged in the master branch:
commit ae51ab0b0c779c3138ef515c62b24ea7c786d751
Author: Martin Klapetek <mklapetek at kde.org>
Date:   Fri Feb 27 18:53:08 2015 +0100

    Fix accidental cache clearing on each startup
    
    One small semicolon for man,
    one giant difference for cache
    
    ...even though the create query was with semicolon, the database stored
    and returned it without one, so comparing it never worked.
---
 contact-cache.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contact-cache.cpp b/contact-cache.cpp
index 93df1e1..9e2ce4d 100644
--- a/contact-cache.cpp
+++ b/contact-cache.cpp
@@ -68,7 +68,7 @@ ContactCache::ContactCache(QObject *parent):
 
     // This is the query that creates the contacts table,
     // SQLite will store this within the sqlite_master table
-    QString createTableQuery = QStringLiteral("CREATE TABLE contacts (accountId VARCHAR NOT NULL, contactId VARCHAR NOT NULL, alias VARCHAR, avatarFileName VARCHAR, isBlocked INT, groupsIds VARCHAR);");
+    QString createTableQuery = QStringLiteral("CREATE TABLE contacts (accountId VARCHAR NOT NULL, contactId VARCHAR NOT NULL, alias VARCHAR, avatarFileName VARCHAR, isBlocked INT, groupsIds VARCHAR)");
 
     // Now let's verify that the table we currently have in the database
     // is the same one as above - get the stored query and compare them,

-- 
ktp-kded-integration-module packaging



More information about the pkg-kde-commits mailing list