summaryrefslogtreecommitdiffstats
path: root/src/clientcompat/jsondb-client.cpp
diff options
context:
space:
mode:
authorDenis Dzyubenko <[email protected]>2012-04-11 15:59:00 +0200
committerDenis Dzyubenko <[email protected]>2012-04-11 16:54:46 +0200
commit6b7df60a752422b1f6ff07bb2682c21e18a43985 (patch)
tree3e56bd3f4ee34a228777d00ff328ef1c53cb1df1 /src/clientcompat/jsondb-client.cpp
parent20549eedb5b5e852c0e384cd76bfbff14168dbda (diff)
parent7ef36e3c5a88560eb4e3a81c2c9f14059739108b (diff)
Merge remote-tracking branch 'gerrit/master' into hbtreehbtree
Conflicts: src/daemon/daemon.pri src/daemon/jsondbview.cpp src/partition/jsondbindex.cpp src/partition/jsondbindex.h src/partition/jsondbindexquery.h src/partition/jsondbmanagedbtree.cpp src/partition/jsondbmanagedbtree.h src/partition/jsondbmanagedbtreetxn.cpp src/partition/jsondbmanagedbtreetxn.h src/partition/jsondbobjecttable.cpp src/partition/jsondbobjecttable.h src/partition/jsondbpartition.cpp src/partition/jsondbpartition.h tests/auto/auto.pro tests/auto/partition/testpartition.cpp tests/benchmarks/benchmarks.pro Change-Id: I963adefd6d32fca9b3537981306b67538c759034
Diffstat (limited to 'src/clientcompat/jsondb-client.cpp')
-rw-r--r--src/clientcompat/jsondb-client.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/clientcompat/jsondb-client.cpp b/src/clientcompat/jsondb-client.cpp
index 82a117b..4a9e69a 100644
--- a/src/clientcompat/jsondb-client.cpp
+++ b/src/clientcompat/jsondb-client.cpp
@@ -41,7 +41,7 @@
#include "jsondb-client.h"
#include "jsondb-client_p.h"
-#include "jsondb-strings.h"
+#include "jsondb-strings_p.h"
#include "jsondb-connection_p.h"
@@ -359,6 +359,8 @@ void JsonDbClientPrivate::_q_handleNotified(const QString &notifyUuid, const QVa
type = JsonDbClient::NotifyUpdate;
} else if (action == JsonDbString::kRemoveStr) {
type = JsonDbClient::NotifyRemove;
+ } else if (action == QLatin1String("stateChange")) {
+ return;
} else {
Q_ASSERT(false);
return;