diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2020-09-30 12:08:51 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2020-09-30 12:08:51 +0000 |
commit | b5988a489aad6633e318b430a55ac11cd27004ec (patch) | |
tree | 371e09af4e4d805c3984a81b2d7119ace35c9ef8 | |
parent | Remove dependency on hal and evolution data server (diff) |
Fix build with recent vala
Notes
Notes:
svn path=/head/; revision=550691
-rw-r--r-- | x11/gnome-pie/files/patch-src_actions_action.vala | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/x11/gnome-pie/files/patch-src_actions_action.vala b/x11/gnome-pie/files/patch-src_actions_action.vala new file mode 100644 index 000000000000..710cc1200c1a --- /dev/null +++ b/x11/gnome-pie/files/patch-src_actions_action.vala @@ -0,0 +1,11 @@ +--- src/actions/action.vala.orig 2015-01-23 11:49:05 UTC ++++ src/actions/action.vala +@@ -63,7 +63,7 @@ public abstract class Action : GLib.Object { + /// C'tor, initializes all members. + ///////////////////////////////////////////////////////////////////// + +- public Action(string name, string icon, bool is_quickaction) { ++ Action(string name, string icon, bool is_quickaction) { + GLib.Object(name : name, icon : icon, is_quickaction : is_quickaction); + } + |