[vte/ricotz/vala: 1/2] vala: Fix accessibility of constant intializer expression




commit 069b68f393c46ebfc6734708f1446419ceed95da
Author: Rico Tzschichholz <ricotz ubuntu com>
Date:   Wed Dec 1 08:21:36 2021 +0100

    vala: Fix accessibility of constant intializer expression

 bindings/vala/app.vala | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/bindings/vala/app.vala b/bindings/vala/app.vala
index 8ab27e5a..faaefe47 100644
--- a/bindings/vala/app.vala
+++ b/bindings/vala/app.vala
@@ -822,11 +822,11 @@ class App : Gtk.Application
   {
     public static bool audible = false;
     public static string? command = null;
-    private static string? cjk_ambiguous_width_string = null;
-    private static string? cursor_blink_mode_string = null;
-    private static string? cursor_background_color_string = null;
-    private static string? cursor_foreground_color_string = null;
-    private static string? cursor_shape_string = null;
+    public static string? cjk_ambiguous_width_string = null;
+    public static string? cursor_blink_mode_string = null;
+    public static string? cursor_background_color_string = null;
+    public static string? cursor_foreground_color_string = null;
+    public static string? cursor_shape_string = null;
     public static string[]? dingus = null;
     public static bool debug = false;
     public static string? encoding = null;
@@ -834,8 +834,8 @@ class App : Gtk.Application
     public static int extra_margin = 0;
     public static string? font_string = null;
     public static string? geometry = null;
-    private static string? hl_bg_color_string = null;
-    private static string? hl_fg_color_string = null;
+    public static string? hl_bg_color_string = null;
+    public static string? hl_fg_color_string = null;
     public static string? icon_title = null;
     public static bool keep = false;
     public static bool no_argb_visual = false;


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