From acb10bb54105e74235190d9c775098a6706380d2 Mon Sep 17 00:00:00 2001 From: "Zeeshan Ali (Khattak)" Date: Thu, 23 Apr 2009 17:06:50 +0300 Subject: [PATCH] Add pref vbox for all existing plugins. --- src/ui/rygel-preferences-dialog.vala | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/ui/rygel-preferences-dialog.vala b/src/ui/rygel-preferences-dialog.vala index 5403b38..072871a 100644 --- a/src/ui/rygel-preferences-dialog.vala +++ b/src/ui/rygel-preferences-dialog.vala @@ -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); -- 2.7.4