Small cleanup.
[ardour.git] / gtk2_ardour / lv2_plugin_ui.h
index bc9b14c8f30ee570666b4e29dfd16589b1d6a744..37234c59eba4259e40e3dbc2cac48778f01fb862 100644 (file)
@@ -59,6 +59,9 @@ class LV2PluginUI : public PlugUIBase, public Gtk::VBox
        int package (Gtk::Window&);
 
   private:
+
+       void parameter_changed (uint32_t, float);
+       
        boost::shared_ptr<ARDOUR::LV2Plugin> _lv2;
        std::vector<int> _output_ports;
        sigc::connection _screen_update_connection;
@@ -81,19 +84,16 @@ class LV2PluginUI : public PlugUIBase, public Gtk::VBox
                        uint32_t         format,
                        const void*      buffer);
 
-       void lv2ui_instantiate(const Glib::ustring& title);
+       void lv2ui_instantiate(const std::string& title);
 
-       void parameter_changed(uint32_t, float);
        void parameter_update(uint32_t, float);
        bool configure_handler (GdkEventConfigure*);
        void save_plugin_setting ();
        void output_update();
        bool is_update_wanted(uint32_t index);
 
-       virtual bool on_window_show(const Glib::ustring& title);
+       virtual bool on_window_show(const std::string& title);
        virtual void on_window_hide();
-
-       PBD::ScopedConnection parameter_connection;
 };
 
 #endif // HAVE_SLV2