aboutsummaryrefslogtreecommitdiff
path: root/src/QXmppVCardManager.h
diff options
context:
space:
mode:
authorManjeet Dahiya <manjeetdahiya@gmail.com>2010-09-07 07:07:10 +0000
committerManjeet Dahiya <manjeetdahiya@gmail.com>2010-09-07 07:07:10 +0000
commit569f693eac9577bd127193877fbc76a9234305f5 (patch)
treedf4f4a2d97b20382c433b0bfc4cc20823d3315d1 /src/QXmppVCardManager.h
parent966a6f2f63f089624dbd50844069f2b86e13dd81 (diff)
downloadqxmpp-569f693eac9577bd127193877fbc76a9234305f5.tar.gz
remove internal usage
Diffstat (limited to 'src/QXmppVCardManager.h')
-rw-r--r--src/QXmppVCardManager.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/QXmppVCardManager.h b/src/QXmppVCardManager.h
index e42fd2a4..91cd9f04 100644
--- a/src/QXmppVCardManager.h
+++ b/src/QXmppVCardManager.h
@@ -27,7 +27,7 @@
#include <QObject>
-#include "QXmppVCard.h"
+#include "QXmppVCardIq.h"
class QXmppOutgoingClient;
@@ -62,28 +62,28 @@ public:
QXmppVCardManager(QXmppOutgoingClient* stream, QObject *parent = 0);
void requestVCard(const QString& bareJid = "");
- const QXmppVCard& clientVCard() const;
- void setClientVCard(const QXmppVCard&);
+ const QXmppVCardIq& clientVCard() const;
+ void setClientVCard(const QXmppVCardIq&);
void requestClientVCard();
bool isClientVCardReceived();
signals:
/// This signal is emitted when the requested vCard is received
/// after calling the requestVCard() function.
- void vCardReceived(const QXmppVCard&);
+ void vCardReceived(const QXmppVCardIq&);
/// This signal is emitted when the client's vCard is received
/// after calling the requestClientVCard() function.
void clientVCardReceived();
private slots:
- void vCardIqReceived(const QXmppVCard&);
+ void vCardIqReceived(const QXmppVCardIq&);
private:
// reference to the xmpp stream (no ownership)
QXmppOutgoingClient* m_stream;
- QXmppVCard m_clientVCard; ///< Stores the vCard of the connected client
+ QXmppVCardIq m_clientVCard; ///< Stores the vCard of the connected client
bool m_isClientVCardReceived;
};