summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Schuette <marcel.schuette@pelagicore.com>2013-08-28 15:34:13 +0200
committerMarcel Schuette <marcel.schuette@pelagicore.com>2013-08-28 15:34:13 +0200
commita5484da7dddb8772af7ffd1715409af544c21af6 (patch)
tree478af68c9f61b8a9c044663b6e6b4e81e4a06982
parentf01699d45d2c22f2df4c7240c2ddf94fe928bb03 (diff)
downloadbrowser-poc-a5484da7dddb8772af7ffd1715409af544c21af6.tar.gz
fixed reply output for certain calls
-rw-r--r--common/browserdbus.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/browserdbus.cpp b/common/browserdbus.cpp
index 3ef5f1c..3da4a44 100644
--- a/common/browserdbus.cpp
+++ b/common/browserdbus.cpp
@@ -361,7 +361,7 @@ void BrowserDbus::addBookmark(int type, QString folder, QString title, QString u
reply.waitForFinished();
if(reply.isValid()) {
conn::brw::ERROR_IDS ret = reply.value();
- qDebug() << "reply " << ret;
+ qDebug() << "ERROR_IDS " << ret;
} else {
QDBusError error = reply.error();
qDebug() << "ERROR " << error.name() << error.message();
@@ -400,7 +400,7 @@ void BrowserDbus::deleteAllBookmarks(int type) {
conn::brw::ERROR_IDS ret = reply.value();
m_bookmarkList.clear();
emit bookmarkListChanged();
- qDebug() << "reply " << ret;
+ qDebug() << "ERROR_IDS " << ret;
} else {
QDBusError error = reply.error();
qDebug() << "ERROR " << error.name() << error.message();
@@ -414,7 +414,7 @@ void BrowserDbus::deleteBookmark(int uid) {
reply.waitForFinished();
if(reply.isValid()) {
conn::brw::ERROR_IDS ret = reply.value();
- qDebug() << "reply " << ret;
+ qDebug() << "ERROR_IDS " << ret;
} else {
QDBusError error = reply.error();
qDebug() << "ERROR " << error.name() << error.message();