summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardour_dialog.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2005-09-26 02:48:59 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2005-09-26 02:48:59 +0000
commit25ac88fcae679cb8c1355fee1b4932122dc5fe36 (patch)
tree42d3bd6a7e28e6881e441f46dccd0ef20dee4a14 /gtk2_ardour/ardour_dialog.cc
parent5f9df85b0dac5ab5ac68bd20b14aafa2981973d3 (diff)
fix all _impl member functions to be on_ instead
git-svn-id: svn://localhost/trunk/ardour2@38 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/ardour_dialog.cc')
-rw-r--r--gtk2_ardour/ardour_dialog.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk2_ardour/ardour_dialog.cc b/gtk2_ardour/ardour_dialog.cc
index dba574540e..1755214bd8 100644
--- a/gtk2_ardour/ardour_dialog.cc
+++ b/gtk2_ardour/ardour_dialog.cc
@@ -43,7 +43,7 @@ ArdourDialog::~ArdourDialog ()
}
gint
-ArdourDialog::enter_notify_event_impl (GdkEventCrossing *ev)
+ArdourDialog::on_enter_notify_event (GdkEventCrossing *ev)
{
if (ev->detail != GDK_NOTIFY_INFERIOR) {
Keyboard::the_keyboard().set_current_dialog (this);
@@ -52,7 +52,7 @@ ArdourDialog::enter_notify_event_impl (GdkEventCrossing *ev)
}
gint
-ArdourDialog::leave_notify_event_impl (GdkEventCrossing *ev)
+ArdourDialog::on_leave_notify_event (GdkEventCrossing *ev)
{
if (ev->detail != GDK_NOTIFY_INFERIOR) {
Keyboard::the_keyboard().set_current_dialog (0);
@@ -61,12 +61,12 @@ ArdourDialog::leave_notify_event_impl (GdkEventCrossing *ev)
}
gint
-ArdourDialog::unmap_event_impl (GdkEventAny *ev)
+ArdourDialog:on_unmap (GdkEventAny *ev)
{
_within_hiding = true;
Hiding (); /* EMIT_SIGNAL */
_within_hiding = false;
- return Gtk::Window::unmap_event_impl (ev);
+ return Gtk::Window::on_unmap (ev);
}
void