no need for ugly cast constructors, just add a second argument
This commit is contained in:
@@ -79,10 +79,7 @@ PluginEqGui::PluginEqGui(boost::shared_ptr<ARDOUR::PluginInsert> pluginInsert)
|
||||
// dB selection
|
||||
dBScaleModel = Gtk::ListStore::create(dBColumns);
|
||||
|
||||
/* this grotty-looking cast allows compilation against gtkmm 2.24.0, which
|
||||
added a new ComboBox constructor.
|
||||
*/
|
||||
dBScaleCombo = new Gtk::ComboBox ((Glib::RefPtr<Gtk::TreeModel> &) dBScaleModel);
|
||||
dBScaleCombo = new Gtk::ComboBox (dBScaleModel, false);
|
||||
dBScaleCombo->set_title (_("dB scale"));
|
||||
|
||||
#define ADD_DB_ROW(MIN,MAX,STEP,NAME) \
|
||||
|
||||
Reference in New Issue
Block a user