summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardour_message.cc
diff options
context:
space:
mode:
authorTaybin Rutkin <taybin@taybin.com>2005-09-25 21:19:23 +0000
committerTaybin Rutkin <taybin@taybin.com>2005-09-25 21:19:23 +0000
commitd38e2213d79b1c8952c776a3b60f7709457edc0c (patch)
tree4d441ade9897b3c4749bfeb53c18f5841bdafbf9 /gtk2_ardour/ardour_message.cc
parente493b2b7c4fbbbfc457f02babf9546289b430177 (diff)
replaced slot() with mem_fun() and ptr_fun().
git-svn-id: svn://localhost/trunk/ardour2@29 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/ardour_message.cc')
-rw-r--r--gtk2_ardour/ardour_message.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/ardour_message.cc b/gtk2_ardour/ardour_message.cc
index b0a414a69a..a34d73c721 100644
--- a/gtk2_ardour/ardour_message.cc
+++ b/gtk2_ardour/ardour_message.cc
@@ -39,7 +39,7 @@ ArdourMessage::ArdourMessage (Gtk::Window* parent,
label.set_name (X_("PrompterLabel"));
ok_button.set_name ("EditorGTKButton");
- ok_button.signal_clicked().connect (bind (slot (*this, &ArdourDialog::stop), 1));
+ ok_button.signal_clicked().connect (bind (mem_fun(*this, &ArdourDialog::stop), 1));
packer.set_spacing (10);
packer.set_border_width (10);