summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Client/BlockListImpl.h')
-rw-r--r--Swiften/Client/BlockListImpl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Swiften/Client/BlockListImpl.h b/Swiften/Client/BlockListImpl.h
index 19359b0..e203d68 100644
--- a/Swiften/Client/BlockListImpl.h
+++ b/Swiften/Client/BlockListImpl.h
@@ -1,7 +1,7 @@
1/* 1/*
2 * Copyright (c) 2011 Isode Limited. 2 * Copyright (c) 2011-2015 Isode Limited.
3 * All rights reserved. 3 * All rights reserved.
4 * See the COPYING file for more information. 4 * See the COPYING file for more information.
5 */ 5 */
6 6
7#pragma once 7#pragma once
@@ -21,11 +21,11 @@ namespace Swift {
21 21
22 virtual const std::vector<JID>& getItems() const { 22 virtual const std::vector<JID>& getItems() const {
23 return items; 23 return items;
24 } 24 }
25 25
26 void setItems(const std::vector<JID>& items); 26 void setItems(const std::vector<JID>& newItems);
27 void addItem(const JID& item); 27 void addItem(const JID& item);
28 void removeItem(const JID& item); 28 void removeItem(const JID& item);
29 void addItems(const std::vector<JID>& items); 29 void addItems(const std::vector<JID>& items);
30 void removeItems(const std::vector<JID>& items); 30 void removeItems(const std::vector<JID>& items);
31 void removeAllItems(); 31 void removeAllItems();