blob: 0ec292507cd33b42d391c5c224d40dec4b4ddc59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
Description: Fix build errors
Author: Jörg Frings-Fürst <debian@jff.email>
forwarded: https://github.com/Simmesimme/Gnome-Pie/issues/177
Last-Update: 2020-05-31
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
Index: trunk/src/actions/action.vala
===================================================================
--- trunk.orig/src/actions/action.vala
+++ trunk/src/actions/action.vala
@@ -69,7 +69,7 @@ public abstract class Action : GLib.Obje
/// 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);
}
|