aboutsummaryrefslogtreecommitdiff
path: root/source/QXmppRosterManager.h
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2010-07-19 11:41:16 +0000
committerJeremy Lainé <jeremy.laine@m4x.org>2010-07-19 11:41:16 +0000
commit9d2d537c7bf395abe4e15528a50f7361205d26be (patch)
treeb48f62448a3cfbbba334624c1a343db5a6413fd5 /source/QXmppRosterManager.h
parentc748d55bb608f194a52b09e0c99b781fc214f955 (diff)
downloadqxmpp-9d2d537c7bf395abe4e15528a50f7361205d26be.tar.gz
remove references to QXmppRoster::QXmppRosterEntry
Diffstat (limited to 'source/QXmppRosterManager.h')
-rw-r--r--source/QXmppRosterManager.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/QXmppRosterManager.h b/source/QXmppRosterManager.h
index 4cde5f98..28c8dc8b 100644
--- a/source/QXmppRosterManager.h
+++ b/source/QXmppRosterManager.h
@@ -73,7 +73,7 @@ public:
bool isRosterReceived();
QStringList getRosterBareJids() const;
- QXmppRosterManager::QXmppRosterEntry getRosterEntry(const QString& bareJid) const;
+ QXmppRosterIq::Item getRosterEntry(const QString& bareJid) const;
QStringList getResources(const QString& bareJid) const;
QMap<QString, QXmppPresence> getAllPresencesForBareJid(
@@ -83,7 +83,7 @@ public:
/// \cond
- QMap<QString, QXmppRosterManager::QXmppRosterEntry> Q_DECL_DEPRECATED getRosterEntries() const;
+ QMap<QString, QXmppRosterIq::Item> Q_DECL_DEPRECATED getRosterEntries() const;
QMap<QString, QMap<QString, QXmppPresence> > Q_DECL_DEPRECATED getAllPresences() const;
/// \endcond
@@ -102,7 +102,7 @@ private:
//reverse pointer to stream
QXmppStream* m_stream;
//map of bareJid and its rosterEntry
- QMap<QString, QXmppRosterManager::QXmppRosterEntry> m_entries;
+ QMap<QString, QXmppRosterIq::Item> m_entries;
// map of resources of the jid and map of resouces and presences
QMap<QString, QMap<QString, QXmppPresence> > m_presences;
// flag to store that the roster has been populated