ui: Fix compile break introduced by 0b187c9d4f
authorJens Georg <mail@jensge.org>
Sat, 2 Jul 2011 13:24:59 +0000 (15:24 +0200)
committerJens Georg <mail@jensge.org>
Sat, 2 Jul 2011 13:26:02 +0000 (15:26 +0200)
src/ui/rygel-writable-user-config.vala

index 18cb193..1e5483a 100644 (file)
@@ -32,6 +32,13 @@ public class Rygel.WritableUserConfig : Rygel.UserConfig {
     private const string RYGEL_PATH = "/org/gnome/Rygel1";
     private const string RYGEL_INTERFACE = "org.gnome.Rygel1";
 
+    public WritableUserConfig () throws Error {
+        var path = Path.build_filename (Environment.get_user_config_dir (),
+                                        CONFIG_FILE);
+
+        base (path);
+    }
+
     public void set_upnp_enabled (bool value) {
         bool enabled = false;