diff options
| author | Manjeet Dahiya <manjeetdahiya@gmail.com> | 2009-10-20 11:43:45 +0000 |
|---|---|---|
| committer | Manjeet Dahiya <manjeetdahiya@gmail.com> | 2009-10-20 11:43:45 +0000 |
| commit | e2be03e254a956024c9d67b19b8a809c9692b6f1 (patch) | |
| tree | 4da3e5da19d109bf34d02ed9359065c73be176ab /source/QXmppSession.h | |
| parent | a9d542be47e91ae39390247f8c8bbb21d588388f (diff) | |
| download | qxmpp-e2be03e254a956024c9d67b19b8a809c9692b6f1.tar.gz | |
Using QXmlStreamWriter for directly writing to the socket. This will avoid string concatenations and problems with XML escaping rules.
and
Fix for Issue 19: XMPP Version < 1.0 send NonSASL Auth query
Diffstat (limited to 'source/QXmppSession.h')
| -rw-r--r-- | source/QXmppSession.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/QXmppSession.h b/source/QXmppSession.h index 02098e2f..1845bf6d 100644 --- a/source/QXmppSession.h +++ b/source/QXmppSession.h @@ -35,7 +35,7 @@ public: ~QXmppSession();
private:
- QByteArray toXmlElementFromChild() const;
+ void toXmlElementFromChild( QXmlStreamWriter *writer) const;
};
|
