From f872433e8e81ba5a3a9ebffa32c6ddd9e3358f07 Mon Sep 17 00:00:00 2001 From: Taybin Rutkin Date: Sun, 25 Sep 2005 19:24:25 +0000 Subject: It begins. git-svn-id: svn://localhost/trunk/ardour2@27 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/grouped_buttons.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gtk2_ardour/grouped_buttons.cc') diff --git a/gtk2_ardour/grouped_buttons.cc b/gtk2_ardour/grouped_buttons.cc index 544b3e1ed8..64c58d8197 100644 --- a/gtk2_ardour/grouped_buttons.cc +++ b/gtk2_ardour/grouped_buttons.cc @@ -18,7 +18,7 @@ $Id$ */ -#include +#include #include "grouped_buttons.h" @@ -34,7 +34,7 @@ GroupedButtons::GroupedButtons (vector& buttonset) if ((*i)->get_active()) { current_active = n; } - (*i)->clicked.connect (bind (slot (*this, &GroupedButtons::one_clicked), n)); + (*i)->signal_clicked().connect (sigc::bind (mem_fun (*this, &GroupedButtons::one_clicked), n)); } } @@ -53,7 +53,7 @@ GroupedButtons::GroupedButtons (uint32_t nbuttons, uint32_t first_active) button->set_active (true); } - button->clicked.connect (bind (slot (*this, &GroupedButtons::one_clicked), n)); + button->signal_clicked().connect (sigc::bind (mem_fun (*this, &GroupedButtons::one_clicked), n)); buttons.push_back (button); } } -- cgit v1.2.3