aboutsummaryrefslogtreecommitdiff
path: root/source/QXmppDiscoveryIq.h
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2010-02-18 12:39:20 +0000
committerJeremy Lainé <jeremy.laine@m4x.org>2010-02-18 12:39:20 +0000
commitf3a04145cc0094a1fb42dba5d83c71d6ef69efe2 (patch)
treedc6735da3cb0396905d82b68652cbf0328b00b3e /source/QXmppDiscoveryIq.h
parent1c594fa50ba7c3fc53fe0ab5a8175a6737e0f8a7 (diff)
downloadqxmpp-f3a04145cc0094a1fb42dba5d83c71d6ef69efe2.tar.gz
use QXmppElementList for QXmppDiscoveryIq
Diffstat (limited to 'source/QXmppDiscoveryIq.h')
-rw-r--r--source/QXmppDiscoveryIq.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/QXmppDiscoveryIq.h b/source/QXmppDiscoveryIq.h
index a7e09c23..9173e01f 100644
--- a/source/QXmppDiscoveryIq.h
+++ b/source/QXmppDiscoveryIq.h
@@ -41,14 +41,14 @@ public:
void parse( QDomElement &element );
static bool isDiscoveryIq( QDomElement &element );
- QList<QXmppElement> getQueryItems() const;
- void setQueryItems(const QList<QXmppElement> &items);
+ QXmppElementList getQueryItems() const;
+ void setQueryItems(const QXmppElementList &items);
enum QueryType getQueryType() const;
void setQueryType(enum QueryType type);
private:
- QList<QXmppElement> m_queryItems;
+ QXmppElementList m_queryItems;
enum QueryType m_queryType;
};