Fix wrongly exposed set_parameter methods on PluginInsert.
[ardour.git] / gtk2_ardour / ui_config.h
index c44ad25a18672599bd5fec20f1d6565388b5af6f..5d4b72056d21550086802b5034cbda30ce844cc7 100644 (file)
@@ -93,8 +93,9 @@ class UIConfigVariable
 
   protected:
        T get_for_save() { return value; }
-       T value;
        std::string _name;
+       T value;
+       
 };
 
 class UIConfiguration : public PBD::Stateful
@@ -107,6 +108,7 @@ class UIConfiguration : public PBD::Stateful
 
        int load_state ();
        int save_state ();
+       int load_defaults ();
 
        int set_state (const XMLNode&);
        XMLNode& get_state (void);