diff options
author | fiaxh <git@lightrise.org> | 2023-10-07 14:29:26 +0200 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2023-10-07 14:34:23 +0200 |
commit | 1e167eeea67f18f3d5788dc34d97d94e6f401499 (patch) | |
tree | df73a70a25fb02d7a2e70623b3ab5ecbe86ced53 /main/src/ui/conversation_selector | |
parent | 0c45387bf903e5b0d02502d27642dd2a78aa6539 (diff) | |
download | dino-1e167eeea67f18f3d5788dc34d97d94e6f401499.tar.gz dino-1e167eeea67f18f3d5788dc34d97d94e6f401499.zip |
Fix some compiler warnings
Diffstat (limited to 'main/src/ui/conversation_selector')
-rw-r--r-- | main/src/ui/conversation_selector/conversation_selector.vala | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/main/src/ui/conversation_selector/conversation_selector.vala b/main/src/ui/conversation_selector/conversation_selector.vala index 535a61b0..d16ef3ee 100644 --- a/main/src/ui/conversation_selector/conversation_selector.vala +++ b/main/src/ui/conversation_selector/conversation_selector.vala @@ -14,7 +14,6 @@ public class ConversationSelector : Widget { ListBox list_box = new ListBox() { hexpand=true }; private StreamInteractor stream_interactor; - private uint? drag_timeout; private HashMap<Conversation, ConversationSelectorRow> rows = new HashMap<Conversation, ConversationSelectorRow>(Conversation.hash_func, Conversation.equals_func); public ConversationSelector init(StreamInteractor stream_interactor) { |