diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-12-11 20:03:50 +0000 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-12-11 20:03:50 +0000 |
| commit | 6070560b8dc5f3a82176a5d26d72622332d77e64 (patch) | |
| tree | ef994d58d51ff995280ab54aa2746727d348c4d1 /src | |
| parent | 4af7217b123b643037476ecb9dfab80295f0aaf6 (diff) | |
| download | qxmpp-6070560b8dc5f3a82176a5d26d72622332d77e64.tar.gz | |
improve QXmppClientExtension description
Diffstat (limited to 'src')
| -rw-r--r-- | src/QXmppClient.cpp | 3 | ||||
| -rw-r--r-- | src/QXmppClientExtension.h | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/QXmppClient.cpp b/src/QXmppClient.cpp index 12f70677..2a02c390 100644 --- a/src/QXmppClient.cpp +++ b/src/QXmppClient.cpp @@ -95,7 +95,8 @@ void QXmppClientPrivate::addProperCapability(QXmppPresence& presence) /// /// QXmpp based clients are built using QXmppClient instances which handle the /// establishment of the XMPP connection and provide a number of high-level -/// "managers" to perform specific tasks. +/// "managers" to perform specific tasks. You can write your own managers to +/// extend QXmpp by subclassing QXmppClientExtension. /// /// <B>Main Class:</B> /// - QXmppClient diff --git a/src/QXmppClientExtension.h b/src/QXmppClientExtension.h index 82048411..8e82181f 100644 --- a/src/QXmppClientExtension.h +++ b/src/QXmppClientExtension.h @@ -37,8 +37,8 @@ class QXmppStream; /// \brief The QXmppClientExtension class is the base class for QXmppClient /// extensions. /// -/// If you want to extend QXmpp, for instance to support an IQ type which -/// is not natively supported by QXmpp, you can subclass QXmppClientExtension +/// If you want to extend QXmppClient, for instance to support an IQ type +/// which is not natively supported, you can subclass QXmppClientExtension /// and implement handleStanza(). You can then add your extension to the /// client instance using QXmppClient::addExtension(). /// |
