aboutsummaryrefslogtreecommitdiff
path: root/example/example_4_callHandling
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2010-07-21 13:15:45 +0000
committerJeremy Lainé <jeremy.laine@m4x.org>2010-07-21 13:15:45 +0000
commite5feebb96869cdacb05343e35d8a83ffc8079ab3 (patch)
tree57514805108c87351efcbc0be2141cc4ee539db9 /example/example_4_callHandling
parentc4a6e257a326ba4baa95a87418208abaddf26b38 (diff)
downloadqxmpp-e5feebb96869cdacb05343e35d8a83ffc8079ab3.tar.gz
fix typos
Diffstat (limited to 'example/example_4_callHandling')
-rw-r--r--example/example_4_callHandling/xmppClient.cpp4
1 files changed, 2 insertions, 2 deletions
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);
}