[dconf-editor] Random formatting fixes.



commit 9f046f4a84214d23b5b845d4c779b4004531ae8b
Author: Arnaud Bonatti <arnaud bonatti gmail com>
Date:   Wed Sep 30 22:18:23 2015 +0200

    Random formatting fixes.

 editor/dconf-model.vala  |    4 ++--
 editor/dconf-schema.vala |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/editor/dconf-model.vala b/editor/dconf-model.vala
index a34249b..0526b50 100644
--- a/editor/dconf-model.vala
+++ b/editor/dconf-model.vala
@@ -259,12 +259,12 @@ public class SettingsModel: GLib.Object, Gtk.TreeModel
 
         client = new DConf.Client ();
         client.changed.connect (watch_func);
-        root = new Directory(this, null, "/", "/");
+        root = new Directory (this, null, "/", "/");
         client.watch_sync ("/");
 
         /* Add keys for the values in the schemas */
         foreach (var schema in schemas.schemas.get_values())
-            root.load_schema(schema, schema.path[1:schema.path.length]);
+            root.load_schema (schema, schema.path [1:schema.path.length]);
     }
 
     public Gtk.TreeModelFlags get_flags()
diff --git a/editor/dconf-schema.vala b/editor/dconf-schema.vala
index ca1d8ca..4e4449f 100644
--- a/editor/dconf-schema.vala
+++ b/editor/dconf-schema.vala
@@ -329,7 +329,7 @@ public class Schema
     public SchemaList list;
     public string id;
     public string? path;
-    public GLib.HashTable<string, SchemaKey> keys = new GLib.HashTable<string, SchemaKey>(str_hash, 
str_equal);
+    public GLib.HashTable<string, SchemaKey> keys = new GLib.HashTable<string, SchemaKey> (str_hash, 
str_equal);
 
     public Schema.from_xml(SchemaList list, Xml.Node* node, string? gettext_domain)
     {


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