summaryrefslogtreecommitdiff
path: root/pcr/tootle/fix-build-on-vala-46.patch
blob: 543c9443b5111b49887b92f76eaf4fb008168726 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
From 0a88bdad6d969ead1e4058b1a19675c9d6857b16 Mon Sep 17 00:00:00 2001
From: worldofpeace <worldofpeace@protonmail.ch>
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 ();
     }