diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2012-05-14 15:05:08 +0200 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2012-05-14 15:05:08 +0200 |
| commit | 82724f00e119eab8a951b750f1d70ea25fe79fc8 (patch) | |
| tree | 2af43e9bcd259565f5c9ebc677c1be5011ded8ed | |
| parent | 852b34db4e1f320b50c1cf6c191f9e8923dedf69 (diff) | |
| download | qxmpp-82724f00e119eab8a951b750f1d70ea25fe79fc8.tar.gz | |
update documentation
| -rw-r--r-- | CHANGELOG | 1 | ||||
| -rw-r--r-- | src/client/QXmppClient.h | 6 |
2 files changed, 4 insertions, 3 deletions
@@ -6,6 +6,7 @@ QXmpp 0.5.0 (UNRELEASED) - Make QXmppTransferManager fully asynchronous. - Remove QXmppPacket class. - Move utility method to a QXmppUtils class. + - Deprecate QXmppReconnectionManager, QXmppClient handles reconnections. - Fix issues: * Issue 64: Compile qxmpp as shared library by default diff --git a/src/client/QXmppClient.h b/src/client/QXmppClient.h index eee81d61..0ff1c45f 100644 --- a/src/client/QXmppClient.h +++ b/src/client/QXmppClient.h @@ -58,9 +58,9 @@ class QXmppVersionManager; /// (roster management), QXmppVCardManager (vCard manager), and /// QXmppVersionManager (software version information). /// -/// By default, a reconnection mechanism exists, which makes sure of reconnecting -/// to the server on disconnections due to an error. User can have a custom -/// reconnection mechanism as well. +/// By default, the client will automatically try reconnecting to the server. +/// You can change this a behaviour using +/// QXmppConfiguration::setAutoReconnectionEnabled(). /// /// Not all the managers or extensions have been enabled by default. One can /// enable/disable the managers using the funtions addExtension() and |
