Add pref vbox for all existing plugins.
authorZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Thu, 23 Apr 2009 14:06:50 +0000 (17:06 +0300)
committerZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Thu, 23 Apr 2009 14:06:50 +0000 (17:06 +0300)
src/ui/rygel-preferences-dialog.vala

index 5403b38..072871a 100644 (file)
@@ -32,6 +32,15 @@ public class Rygel.PreferencesDialog : Dialog {
 
         this.notebook = new Notebook ();
         this.add_pref_page (new GeneralPrefVBox (config_editor));
+        this.add_pref_page (new PluginPrefVBox (config_editor,
+                                                "Tracker",
+                                                "tracker"));
+        this.add_pref_page (new PluginPrefVBox (config_editor,
+                                                "DVB",
+                                                "dvb"));
+        this.add_pref_page (new PluginPrefVBox (config_editor,
+                                                "Test",
+                                                "test"));
 
         this.vbox.add (this.notebook);