summaryrefslogtreecommitdiff
path: root/gtk2_ardour/panner_ui.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2005-09-26 18:24:59 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2005-09-26 18:24:59 +0000
commit4b233612261e2d13ebbd1931f4d999c6da1451e9 (patch)
treee2b0cbcb2c870a2197a0c065c5d451a85c055d7d /gtk2_ardour/panner_ui.cc
parent08d33fcb0d35b6448ac1b5a4bcc54095cacbfccd (diff)
continuing fixes to get this shibboleth to compile
git-svn-id: svn://localhost/trunk/ardour2@43 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/panner_ui.cc')
-rw-r--r--gtk2_ardour/panner_ui.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk2_ardour/panner_ui.cc b/gtk2_ardour/panner_ui.cc
index 6b0de27d56..d39db28075 100644
--- a/gtk2_ardour/panner_ui.cc
+++ b/gtk2_ardour/panner_ui.cc
@@ -119,9 +119,9 @@ PannerUI::PannerUI (IO& io, Session& s)
panning_link_direction_button.clicked.connect
(mem_fun(*this, &PannerUI::panning_link_direction_clicked));
- panning_link_button.signal_button_press_event.connect
+ panning_link_button.signal_button_press_event().connect
(mem_fun(*this, &PannerUI::panning_link_button_press));
- panning_link_button.signal_button_release_event.connect
+ panning_link_button.signal_button_release_event().connect
(mem_fun(*this, &PannerUI::panning_link_button_release));
panning_up.set_border_width (3);
@@ -334,8 +334,8 @@ PannerUI::setup_pan ()
bc->set_name ("PanSlider");
bc->set_shadow_type (GTK_SHADOW_NONE);
bc->set_style (BarController::Line);
- bc->get_spin_button().signal_signal_focus_in_event().connect (mem_fun(*this, &PannerUI::entry_focus_event));
- bc->get_spin_button().signal_signal_focus_out_event().connect (mem_fun(*this, &PannerUI::entry_focus_event));
+ bc->get_spin_button().signal_focus_in_event()().connect (mem_fun(*this, &PannerUI::entry_focus_event));
+ bc->get_spin_button().signal_focus_out_event()().connect (mem_fun(*this, &PannerUI::entry_focus_event));
bc->StartGesture.connect (bind (mem_fun (_io, &IO::start_pan_touch), (uint32_t) asz));
bc->StopGesture.connect (bind (mem_fun (_io, &IO::end_pan_touch), (uint32_t) asz));
@@ -344,7 +344,7 @@ PannerUI::setup_pan ()
snprintf (buf, sizeof (buf), _("panner for channel %u"), asz + 1);
ARDOUR_UI::instance()->tooltips().set_tip (bc->event_widget(), buf);
- bc->event_widget().signal_button_release_event.connect
+ bc->event_widget().signal_button_release_event().connect
(bind (mem_fun(*this, &PannerUI::pan_button_event), (uint32_t) asz));
pan_bars.push_back (bc);