13
0

No-op; whitespace.

git-svn-id: svn://localhost/ardour2/branches/3.0@8837 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2011-02-13 19:34:44 +00:00
parent c9d16512e9
commit 886cae6dcc

View File

@ -205,30 +205,30 @@ class GenericPluginUI : public PlugUIBase, public Gtk::VBox
Evoral::Parameter parameter() { return control->parameter(); } Evoral::Parameter parameter() { return control->parameter(); }
/* input */ /* input */
Gtk::ComboBoxText* combo;
std::map<std::string, float>* combo_map;
Gtk::ToggleButton* button;
boost::shared_ptr<AutomationController> controller;
Gtkmm2ext::ClickBox* clickbox;
Gtk::Label label;
bool logarithmic;
bool update_pending;
char ignore_change;
Gtk::Button automate_button;
/* output */
Gtk::EventBox* display;
Gtk::Label* display_label;
Gtk::ComboBoxText* combo; Gtk::HBox* hbox;
std::map<std::string, float>* combo_map; Gtk::VBox* vbox;
Gtk::ToggleButton* button; MeterInfo* meterinfo;
boost::shared_ptr<AutomationController> controller;
Gtkmm2ext::ClickBox* clickbox;
Gtk::Label label;
bool logarithmic;
bool update_pending;
char ignore_change;
Gtk::Button automate_button;
/* output */ ControlUI ();
~ControlUI ();
Gtk::EventBox *display;
Gtk::Label* display_label;
Gtk::HBox * hbox;
Gtk::VBox * vbox;
MeterInfo * meterinfo;
ControlUI ();
~ControlUI();
}; };
std::vector<ControlUI*> input_controls; std::vector<ControlUI*> input_controls;