From 0a88bdad6d969ead1e4058b1a19675c9d6857b16 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Mon, 14 Oct 2019 16:44:16 -0400 Subject: [PATCH] Fix build with vala 0.46 See: https://gitlab.gnome.org/GNOME/vala/issues/766 --- src/Views/AbstractView.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Views/AbstractView.vala b/src/Views/AbstractView.vala index e1c7f06..2945624 100644 --- a/src/Views/AbstractView.vala +++ b/src/Views/AbstractView.vala @@ -21,7 +21,7 @@ public abstract class Tootle.AbstractView : ScrolledWindow { }); } - public AbstractView () { + protected AbstractView () { show_all (); }