From e5feebb96869cdacb05343e35d8a83ffc8079ab3 Mon Sep 17 00:00:00 2001 From: Jeremy Lainé Date: Wed, 21 Jul 2010 13:15:45 +0000 Subject: fix typos --- example/example_4_callHandling/xmppClient.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'example') diff --git a/example/example_4_callHandling/xmppClient.cpp b/example/example_4_callHandling/xmppClient.cpp index 9087803b..7a7da11b 100644 --- a/example/example_4_callHandling/xmppClient.cpp +++ b/example/example_4_callHandling/xmppClient.cpp @@ -87,10 +87,10 @@ void xmppClient::slotPresenceReceived(const QXmppPresence &presence) // start the call and connect to the its signals QXmppCall *call = callManager().call(recipient); - bool check = connect(job, SIGNAL(connected()), this, SLOT(slotConnected())); + bool check = connect(call, SIGNAL(connected()), this, SLOT(slotConnected())); Q_ASSERT(check); - check = connect(job, SIGNAL(finished()), this, SLOT(slotFinished())); + check = connect(call, SIGNAL(finished()), this, SLOT(slotFinished())); Q_ASSERT(check); } -- cgit v1.2.3