summaryrefslogtreecommitdiffstats
path: root/src/dbus
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2014-12-02 15:53:02 -0800
committerThiago Macieira <thiago.macieira@intel.com>2014-12-04 00:41:06 +0100
commit5d8baf9056c1264434949e0176cbb2dfd2d78658 (patch)
tree94cb6533b2635bb489a2f8c2469509a23ed4b4e3 /src/dbus
parent0f88c5c1b99336a328f9a7123903fbc006251ea1 (diff)
Change misleading error message in QDBusReply
"no signature" is misleading and even led me to re-check the code to see if it meant that the reply failed and no signature could be obtained. Saying that the signature was obtained but is empty is better. Change-Id: I1381cf53b334798125d36db0934105d15b63b84f Reviewed-by: Frederik Gladhorn <frederik.gladhorn@theqtcompany.com>
Diffstat (limited to 'src/dbus')
-rw-r--r--src/dbus/qdbusreply.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dbus/qdbusreply.cpp b/src/dbus/qdbusreply.cpp
index c141c233a1..624a1bd3ed 100644
--- a/src/dbus/qdbusreply.cpp
+++ b/src/dbus/qdbusreply.cpp
@@ -219,7 +219,7 @@ void qDBusReplyFill(const QDBusMessage &reply, QDBusError &error, QVariant &data
// error
if (receivedSignature.isEmpty())
- receivedSignature = "no signature";
+ receivedSignature = "<empty signature>";
QString errorMsg;
if (receivedType) {
errorMsg = QString::fromLatin1("Unexpected reply signature: got \"%1\" (%4), "