diff options
author | fiaxh <git@mx.ax.lt> | 2017-03-10 18:07:28 +0100 |
---|---|---|
committer | fiaxh <git@mx.ax.lt> | 2017-03-10 18:07:28 +0100 |
commit | 4c48c5c16d5f5b010c2e5dfb1affcb59f937510c (patch) | |
tree | d4a75a005fcfa823b1716d8bfbe3d862f3680905 /client/src/ui/occupant_list.vala | |
parent | cf51e1dee22273366700c41a185c4bea343dddfe (diff) | |
download | dino-4c48c5c16d5f5b010c2e5dfb1affcb59f937510c.tar.gz dino-4c48c5c16d5f5b010c2e5dfb1affcb59f937510c.zip |
Reformat [GtkChild]
Diffstat (limited to 'client/src/ui/occupant_list.vala')
-rw-r--r-- | client/src/ui/occupant_list.vala | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/client/src/ui/occupant_list.vala b/client/src/ui/occupant_list.vala index 921f7e70..ba7c01d1 100644 --- a/client/src/ui/occupant_list.vala +++ b/client/src/ui/occupant_list.vala @@ -4,17 +4,15 @@ using Gtk; using Dino.Entities; namespace Dino.Ui{ + [GtkTemplate (ui = "/org/dino-im/occupant_list.ui")] public class OccupantList : Box { public signal void conversation_selected(Conversation? conversation); private StreamInteractor stream_interactor; - [GtkChild] - private ListBox list_box; - - [GtkChild] - private SearchEntry search_entry; + [GtkChild] private ListBox list_box; + [GtkChild] private SearchEntry search_entry; private Conversation? conversation; private string[]? filter_values; @@ -109,4 +107,5 @@ public class OccupantList : Box { return 0; } } + }
\ No newline at end of file |