summaryrefslogtreecommitdiff
path: root/gtk2_ardour/about.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/about.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/about.cc')
-rw-r--r--gtk2_ardour/about.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk2_ardour/about.cc b/gtk2_ardour/about.cc
index 95c4b29ed6..4fed26d05d 100644
--- a/gtk2_ardour/about.cc
+++ b/gtk2_ardour/about.cc
@@ -247,7 +247,7 @@ Contributors:\n\t");
notebook->pages().push_back (TabElem (*translator_scroller, *translator_tab_label));
notebook->set_name ("AboutNoteBook");
- notebook->button_release_event.connect_after (bind (slot (stoppit), notebook));
+ notebook->button_release_event.connect_after (bind (ptr_fun (stoppit), notebook));
logo_pixmap = 0;
logo_height = 0;
@@ -265,9 +265,9 @@ Contributors:\n\t");
load_logo (*this);
vbox.pack_start (logo_area, false, false);
- logo_area.expose_event.connect (slot (*this, &About::logo_area_expose));
+ logo_area.expose_event.connect (mem_fun(*this, &About::logo_area_expose));
} else {
- expose_event.connect (slot (*this, &About::logo_area_expose));
+ expose_event.connect (mem_fun(*this, &About::logo_area_expose));
}
small_label->set_name ("AboutWindowSmallLabel");
@@ -290,7 +290,7 @@ Contributors:\n\t");
subvbox.pack_start (*payment_box, false, false);
#endif
- delete_event.connect (bind (slot (just_hide_it), static_cast<Gtk::Window*> (this)));
+ delete_event.connect (bind (ptr_fun (just_hide_it), static_cast<Gtk::Window*> (this)));
add (vbox);
add_events (Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK);