aboutsummaryrefslogtreecommitdiff
path: root/source/QXmppElement.h
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2010-02-19 16:41:04 +0000
committerJeremy Lainé <jeremy.laine@m4x.org>2010-02-19 16:41:04 +0000
commit3bdcb8f14ff62b44d7ddd021bf187f8f5cae5a59 (patch)
treecda5a66825fcc671ccdd6234900bed91f3a107d7 /source/QXmppElement.h
parent1ce7a46bf44ee6317f8bb5dd2bb80fde2df759de (diff)
downloadqxmpp-3bdcb8f14ff62b44d7ddd021bf187f8f5cae5a59.tar.gz
make QXmppElement API more like Qt's QDomElement
Diffstat (limited to 'source/QXmppElement.h')
-rw-r--r--source/QXmppElement.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/QXmppElement.h b/source/QXmppElement.h
index 780d00c0..2c179043 100644
--- a/source/QXmppElement.h
+++ b/source/QXmppElement.h
@@ -54,8 +54,8 @@ public:
void setAttribute(const QString &name, const QString &value);
void appendChild(const QXmppElement &child);
- QXmppElementList children() const;
QXmppElement firstChildElement(const QString &name = QString()) const;
+ QXmppElement nextSiblingElement(const QString &name = QString()) const;
void removeChild(const QXmppElement &child);
QString tagName() const;