diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2011-07-07 09:08:39 +0000 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2011-07-07 09:08:39 +0000 |
| commit | 7df119586bbb595f8f00ca1cb54bc3beebfc14a5 (patch) | |
| tree | 2c30b72af484ce0821730b9c8f4955ea8b86aaf1 /examples/example_9_vCard | |
| parent | 498881bcf60b59b945beed450e31592b1c8e96a3 (diff) | |
normalize Qt signal / slot signatures
Diffstat (limited to 'examples/example_9_vCard')
| -rw-r--r-- | examples/example_9_vCard/xmppClient.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/example_9_vCard/xmppClient.cpp b/examples/example_9_vCard/xmppClient.cpp index d85081b7..5ecc9ab3 100644 --- a/examples/example_9_vCard/xmppClient.cpp +++ b/examples/example_9_vCard/xmppClient.cpp @@ -62,8 +62,8 @@ void xmppClient::clientConnected() void xmppClient::rosterReceived() { std::cout<<"example_9_vCard:: Roster Received"<<std::endl; - bool check = connect(&this->vCardManager(), SIGNAL(vCardReceived(const QXmppVCardIq&)), - SLOT(vCardReceived(const QXmppVCardIq&))); + bool check = connect(&this->vCardManager(), SIGNAL(vCardReceived(QXmppVCardIq)), + SLOT(vCardReceived(QXmppVCardIq))); Q_ASSERT(check); Q_UNUSED(check); |
