[gnome-terminal] Fix the build



commit 1bacba577c520b44458fd0e46d1d84a11d5d5233
Author: Matthias Clasen <mclasen redhat com>
Date:   Thu Aug 14 08:53:09 2014 -0400

    Fix the build
    
    A recent vala change made it an error to use anything but
    'public' in structs.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=734787

 src/gterminal.vala |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/gterminal.vala b/src/gterminal.vala
index 10f1dec..cf1ffae 100644
--- a/src/gterminal.vala
+++ b/src/gterminal.vala
@@ -21,10 +21,10 @@ namespace GTerminal
 
   public struct Output
   {
-    private static bool quiet = false;
-    private static bool verbose = false;
+    public static bool quiet = false;
+    public static bool verbose = false;
 
-    private static const OptionEntry[] entries = {
+    public static const OptionEntry[] entries = {
       { "quiet",   0,   OptionFlags.HIDDEN, OptionArg.NONE, ref quiet,
         N_("Suppress output"), null },
       { "verbose", 'v', OptionFlags.HIDDEN, OptionArg.NONE, ref verbose,


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]