aboutsummaryrefslogtreecommitdiff
path: root/src/base/QXmppElement.cpp
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2012-04-23 20:01:59 +0000
committerJeremy Lainé <jeremy.laine@m4x.org>2012-04-23 20:01:59 +0000
commit0bbe151263ceffd4cf7ab9497fffa425284d3108 (patch)
tree6a17e42e3da03faaee463debd76e3a09c5dc6b3b /src/base/QXmppElement.cpp
parent67443567a3dfeb170cd158c4fe4078916f2adbdc (diff)
make QXmppElementList a typedef (thanks Matt)
Diffstat (limited to 'src/base/QXmppElement.cpp')
-rw-r--r--src/base/QXmppElement.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/base/QXmppElement.cpp b/src/base/QXmppElement.cpp
index 904ab473..8832038c 100644
--- a/src/base/QXmppElement.cpp
+++ b/src/base/QXmppElement.cpp
@@ -223,19 +223,3 @@ void QXmppElement::toXml(QXmlStreamWriter *writer) const
child.toXml(writer);
writer->writeEndElement();
}
-
-QXmppElementList::QXmppElementList()
-{
-}
-
-QXmppElementList::QXmppElementList(const QXmppElement &element)
-{
- append(element);
-}
-
-
-QXmppElementList::QXmppElementList(const QList<QXmppElement> &other)
- : QList<QXmppElement>(other)
-{
-}
-