mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
Add a missing namespace qualifier
(is needed now, following commit #94271ee862)
This commit is contained in:
parent
0c368499f8
commit
6f1fd3e4fd
1 changed files with 2 additions and 2 deletions
|
|
@ -97,7 +97,7 @@ TransformDialog::TransformDialog()
|
||||||
|
|
||||||
Gtk::HBox* add_hbox = Gtk::manage(new Gtk::HBox);
|
Gtk::HBox* add_hbox = Gtk::manage(new Gtk::HBox);
|
||||||
_add_button.add(
|
_add_button.add(
|
||||||
*manage(new Gtk::Image(Gtk::Stock::ADD, Gtk::ICON_SIZE_BUTTON)));
|
*Gtk::manage(new Gtk::Image(Gtk::Stock::ADD, Gtk::ICON_SIZE_BUTTON)));
|
||||||
add_hbox->pack_start(_add_button, false, false);
|
add_hbox->pack_start(_add_button, false, false);
|
||||||
_add_button.signal_clicked().connect(
|
_add_button.signal_clicked().connect(
|
||||||
sigc::mem_fun(*this, &TransformDialog::add_clicked));
|
sigc::mem_fun(*this, &TransformDialog::add_clicked));
|
||||||
|
|
@ -311,7 +311,7 @@ TransformDialog::OperationChooser::OperationChooser(const Model& model)
|
||||||
pack_start(remove_button, false, false);
|
pack_start(remove_button, false, false);
|
||||||
|
|
||||||
remove_button.add(
|
remove_button.add(
|
||||||
*manage(new Gtk::Image(Gtk::Stock::REMOVE, Gtk::ICON_SIZE_BUTTON)));
|
*Gtk::manage(new Gtk::Image(Gtk::Stock::REMOVE, Gtk::ICON_SIZE_BUTTON)));
|
||||||
|
|
||||||
remove_button.signal_clicked().connect(
|
remove_button.signal_clicked().connect(
|
||||||
sigc::mem_fun(*this, &TransformDialog::OperationChooser::remove_clicked));
|
sigc::mem_fun(*this, &TransformDialog::OperationChooser::remove_clicked));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue