diff options
Diffstat (limited to 'Swiften/Client/BlockListImpl.h')
-rw-r--r-- | Swiften/Client/BlockListImpl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Swiften/Client/BlockListImpl.h b/Swiften/Client/BlockListImpl.h index ef08340..2a799ae 100644 --- a/Swiften/Client/BlockListImpl.h +++ b/Swiften/Client/BlockListImpl.h @@ -20,5 +20,5 @@ namespace Swift { void setState(State state); - virtual const std::set<JID>& getItems() const { + virtual const std::vector<JID>& getItems() const { return items; } @@ -33,5 +33,5 @@ namespace Swift { private: State state; - std::set<JID> items; + std::vector<JID> items; }; } |