diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-03-25 10:08:37 +0000 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-03-25 10:08:37 +0000 |
| commit | 76e1d99be97a9cf9ebc00bdf73c4ea648f36d076 (patch) | |
| tree | 96056b9da1e09701e1c95c13bcaf1146be29bd2b /source/QXmppPingIq.h | |
| parent | 92366a2ac652d955666c2b55b440d780755fd803 (diff) | |
| download | qxmpp-76e1d99be97a9cf9ebc00bdf73c4ea648f36d076.tar.gz | |
QXmppPingIq::isPingIq should take a const QDomElement& as argument
Diffstat (limited to 'source/QXmppPingIq.h')
| -rw-r--r-- | source/QXmppPingIq.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/QXmppPingIq.h b/source/QXmppPingIq.h index 83b7db4d..a8bc425b 100644 --- a/source/QXmppPingIq.h +++ b/source/QXmppPingIq.h @@ -34,7 +34,7 @@ class QXmppPingIq : public QXmppIq public: QXmppPingIq(); void toXmlElementFromChild(QXmlStreamWriter *writer) const; - static bool isPingIq( QDomElement &element ); + static bool isPingIq(const QDomElement &element); }; #endif |
