aboutsummaryrefslogtreecommitdiff
path: root/main/src/ui/add_conversation
diff options
context:
space:
mode:
authorfiaxh <git@lightrise.org>2018-11-24 21:00:44 +0100
committerfiaxh <git@lightrise.org>2018-11-24 14:05:03 -0600
commit22340cb88e056211cd2e08036e7a1982e37c391b (patch)
treee35a39662c7292ad01f3a1ba64a7089e674a4b6a /main/src/ui/add_conversation
parentc44489214e040f48042d27254d4c18a78e343049 (diff)
downloaddino-22340cb88e056211cd2e08036e7a1982e37c391b.tar.gz
dino-22340cb88e056211cd2e08036e7a1982e37c391b.zip
Always use Account.hash(equals)_func for HashMap+ArrayList
Diffstat (limited to 'main/src/ui/add_conversation')
-rw-r--r--main/src/ui/add_conversation/conference_list.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/ui/add_conversation/conference_list.vala b/main/src/ui/add_conversation/conference_list.vala
index 69e8c952..2f52558d 100644
--- a/main/src/ui/add_conversation/conference_list.vala
+++ b/main/src/ui/add_conversation/conference_list.vala
@@ -11,7 +11,7 @@ protected class ConferenceList : FilterableList {
public signal void conversation_selected(Conversation? conversation);
private StreamInteractor stream_interactor;
- private HashMap<Account, Gee.List<Xep.Bookmarks.Conference>> lists = new HashMap<Account, Gee.List<Xep.Bookmarks.Conference>>();
+ private HashMap<Account, Gee.List<Xep.Bookmarks.Conference>> lists = new HashMap<Account, Gee.List<Xep.Bookmarks.Conference>>(Account.hash_func, Account.equals_func);
public ConferenceList(StreamInteractor stream_interactor) {
this.stream_interactor = stream_interactor;