[gnome-boxes] Remove redundant 'static' keyword



commit 76d5ac6b49670a23ba92c5411d5d2fca5b4bc28a
Author: Zeeshan Ali (Khattak) <zeeshanak gnome org>
Date:   Fri Nov 18 00:21:25 2011 +0200

    Remove redundant 'static' keyword
    
    This was most probably some accident cause the fields are initialized at
    instance construction time.

 src/app.vala |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/app.vala b/src/app.vala
index d5337ed..09c898d 100644
--- a/src/app.vala
+++ b/src/app.vala
@@ -30,8 +30,8 @@ private class Boxes.App: Boxes.UI {
     public Topbar topbar;
     public Sidebar sidebar;
     public Selectionbar selectionbar;
-    public static uint duration;
-    public static GLib.Settings settings;
+    public uint duration;
+    public GLib.Settings settings;
     public Wizard wizard;
     public Properties properties;
     public DisplayPage display_page;



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