summaryrefslogtreecommitdiff
path: root/gtk2_ardour/plugin_selector.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2005-10-09 05:03:29 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2005-10-09 05:03:29 +0000
commitc38fdbc64c73c686f9f55729b352f8d0f4c09070 (patch)
tree557a93364933446a7192adb0072d75c2b9b84fc9 /gtk2_ardour/plugin_selector.cc
parent4c509656223d3ed1f0fab504cb483090d38972f9 (diff)
"finalmunge" patch from nick, plus work on editor region list and actions infrastructure from me
git-svn-id: svn://localhost/trunk/ardour2@52 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/plugin_selector.cc')
-rw-r--r--gtk2_ardour/plugin_selector.cc20
1 files changed, 10 insertions, 10 deletions
diff --git a/gtk2_ardour/plugin_selector.cc b/gtk2_ardour/plugin_selector.cc
index dee19256a7..c6b41a6603 100644
--- a/gtk2_ardour/plugin_selector.cc
+++ b/gtk2_ardour/plugin_selector.cc
@@ -97,13 +97,13 @@ PluginSelector::PluginSelector (PluginManager *mgr)
table->set_size_request(750, 500);
table->attach(notebook, 0, 7, 0, 5);
- table->attach(*btn_add, 1, 2, 5, 6, Gtk::FILL, 0, 5, 5);
- table->attach(*btn_remove, 3, 4, 5, 6, Gtk::FILL, 0, 5, 5);
- table->attach(*btn_update, 5, 6, 5, 6, Gtk::FILL, 0, 5, 5);
+ table->attach(*btn_add, 1, 2, 5, 6, Gtk::FILL, Gtk::FILL, 5, 5);
+ table->attach(*btn_remove, 3, 4, 5, 6, Gtk::FILL, Gtk::FILL, 5, 5);
+ table->attach(*btn_update, 5, 6, 5, 6, Gtk::FILL, Gtk::FILL, 5, 5);
table->attach(o_selector, 0, 7, 7, 9);
- table->attach(*btn_ok, 1, 3, 9, 10, Gtk::FILL, 0, 5, 5);
- table->attach(*btn_cancel, 3, 4, 9, 10, Gtk::FILL, 0, 5, 5);
+ table->attach(*btn_ok, 1, 3, 9, 10, Gtk::FILL, Gtk::FILL, 5, 5);
+ table->attach(*btn_cancel, 3, 4, 9, 10, Gtk::FILL, Gtk::FILL, 5, 5);
add (*table);
using namespace Gtk::Notebook_Helpers;
@@ -138,12 +138,12 @@ PluginSelector::PluginSelector (PluginManager *mgr)
#endif
o_selector.selection_made.connect(mem_fun(*this, &PluginSelector::o_plugin_selected));
o_selector.choice_made.connect(mem_fun(*this,&PluginSelector::o_plugin_chosen));
- btn_update-.signal_clicked().connect (mem_fun(*this, &PluginSelector::btn_update_clicked));
+ btn_update->signal_clicked().connect (mem_fun(*this, &PluginSelector::btn_update_clicked));
btn_add->clicked.connect(mem_fun(*this, &PluginSelector::btn_add_clicked));
- btn_remove->clicked.connect(mem_fun(*this, &PluginSelector::btn_remove_clicked));
- btn_ok->clicked.connect(mem_fun(*this, &PluginSelector::btn_ok_clicked));
- btn_cancel->clicked.connect(mem_fun(*this,&PluginSelector::btn_cancel_clicked));
- delete_event.connect (mem_fun(*this, &PluginSelector::wm_close));
+ btn_remove->signal_clicked().connect(mem_fun(*this, &PluginSelector::btn_remove_clicked));
+ btn_ok->signal_clicked().connect(mem_fun(*this, &PluginSelector::btn_ok_clicked));
+ btn_cancel->signal_clicked().connect(mem_fun(*this,&PluginSelector::btn_cancel_clicked));
+ signal_delete_event().connect (mem_fun(*this, &PluginSelector::wm_close));
}