From 8d8dcf5af67ad89c328e67dc2c3469ef90283d9a Mon Sep 17 00:00:00 2001 From: fiaxh Date: Mon, 11 Oct 2021 23:08:50 +0200 Subject: Fix compiler warnings ('[GtkChild] fields must be declared as `unowned'') --- main/src/ui/manage_accounts/account_row.vala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'main/src/ui/manage_accounts/account_row.vala') diff --git a/main/src/ui/manage_accounts/account_row.vala b/main/src/ui/manage_accounts/account_row.vala index f5415d4d..b3a33eae 100644 --- a/main/src/ui/manage_accounts/account_row.vala +++ b/main/src/ui/manage_accounts/account_row.vala @@ -7,9 +7,9 @@ namespace Dino.Ui.ManageAccounts { [GtkTemplate (ui = "/im/dino/Dino/manage_accounts/account_row.ui")] public class AccountRow : Gtk.ListBoxRow { - [GtkChild] public AvatarImage image; - [GtkChild] public Label jid_label; - [GtkChild] public Image icon; + [GtkChild] public unowned AvatarImage image; + [GtkChild] public unowned Label jid_label; + [GtkChild] public unowned Image icon; public Account account; private StreamInteractor stream_interactor; -- cgit v1.2.3-54-g00ecf