diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-12-09 16:07:57 +0000 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-12-09 16:07:57 +0000 |
| commit | c2ee0b903b9a937b19481caf090012eee719853a (patch) | |
| tree | ccaa12b5b0e9aac5f205edbf671f8621cf14fc5a /src | |
| parent | 9c8170a8ba4c8bf1cc8df2e68eb23f7ff92da742 (diff) | |
| download | qxmpp-c2ee0b903b9a937b19481caf090012eee719853a.tar.gz | |
fix documentation for QXmppVCardIq
Diffstat (limited to 'src')
| -rw-r--r-- | src/QXmppVCardIq.cpp | 4 | ||||
| -rw-r--r-- | src/QXmppVCardIq.h | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/src/QXmppVCardIq.cpp b/src/QXmppVCardIq.cpp index 3fe12c00..22dd759e 100644 --- a/src/QXmppVCardIq.cpp +++ b/src/QXmppVCardIq.cpp @@ -48,6 +48,10 @@ QString getImageType(const QByteArray &contents) return "image/unknown"; } +/// Constructs a QXmppVCardIq for the specified recipient. +/// +/// \param jid + QXmppVCardIq::QXmppVCardIq(const QString& jid) : QXmppIq(QXmppIq::Get) { // for self jid should be empty diff --git a/src/QXmppVCardIq.h b/src/QXmppVCardIq.h index b56ef54a..b6f21fab 100644 --- a/src/QXmppVCardIq.h +++ b/src/QXmppVCardIq.h @@ -77,10 +77,11 @@ public: QString url() const; void setUrl(const QString&); + /// \cond static bool isVCard(const QDomElement &element); -// deprecated accessors, use the form without "get" instead -// deprecated in release 0.2.0 + // deprecated accessors, use the form without "get" instead + // deprecated in release 0.2.0 QString Q_DECL_DEPRECATED getFullName() const; QString Q_DECL_DEPRECATED getNickName() const; const QByteArray Q_DECL_DEPRECATED & getPhoto() const; |
