aboutsummaryrefslogtreecommitdiff
path: root/example/example_1_echoClient
diff options
context:
space:
mode:
authorManjeet Dahiya <manjeetdahiya@gmail.com>2010-03-08 08:07:39 +0000
committerManjeet Dahiya <manjeetdahiya@gmail.com>2010-03-08 08:07:39 +0000
commited735b72886cab4079a7cbebf3b0eeba71087318 (patch)
tree828273baee39192dacc7ac4b18be9942b0d25035 /example/example_1_echoClient
parentb78eba54715aa2ef8f9062a0fecf9716f82775ef (diff)
downloadqxmpp-ed735b72886cab4079a7cbebf3b0eeba71087318.tar.gz
suppress unused variable warning
Diffstat (limited to 'example/example_1_echoClient')
-rw-r--r--example/example_1_echoClient/echoClient.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/example/example_1_echoClient/echoClient.cpp b/example/example_1_echoClient/echoClient.cpp
index 2f04e1b4..30519b71 100644
--- a/example/example_1_echoClient/echoClient.cpp
+++ b/example/example_1_echoClient/echoClient.cpp
@@ -31,6 +31,7 @@ echoClient::echoClient(QObject *parent)
bool check = connect(this, SIGNAL(messageReceived(const QXmppMessage&)),
SLOT(messageReceived(const QXmppMessage&)));
Q_ASSERT(check);
+ Q_UNUSED(check);
}
echoClient::~echoClient()