diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-07-21 13:15:45 +0000 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-07-21 13:15:45 +0000 |
| commit | e5feebb96869cdacb05343e35d8a83ffc8079ab3 (patch) | |
| tree | 57514805108c87351efcbc0be2141cc4ee539db9 /example/example_4_callHandling/xmppClient.cpp | |
| parent | c4a6e257a326ba4baa95a87418208abaddf26b38 (diff) | |
| download | qxmpp-e5feebb96869cdacb05343e35d8a83ffc8079ab3.tar.gz | |
fix typos
Diffstat (limited to 'example/example_4_callHandling/xmppClient.cpp')
| -rw-r--r-- | example/example_4_callHandling/xmppClient.cpp | 4 |
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); } |
