summaryrefslogtreecommitdiff
path: root/gtk2_ardour/prompter.cc
diff options
context:
space:
mode:
authorTaybin Rutkin <taybin@taybin.com>2005-09-25 20:33:00 +0000
committerTaybin Rutkin <taybin@taybin.com>2005-09-25 20:33:00 +0000
commite493b2b7c4fbbbfc457f02babf9546289b430177 (patch)
tree598b5fa6dc9340c96961e3131cc994480d80ff6a /gtk2_ardour/prompter.cc
parentf872433e8e81ba5a3a9ebffa32c6ddd9e3358f07 (diff)
Fly my pretties!
git-svn-id: svn://localhost/trunk/ardour2@28 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/prompter.cc')
-rw-r--r--gtk2_ardour/prompter.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk2_ardour/prompter.cc b/gtk2_ardour/prompter.cc
index 7bbb9daea9..9236d2a510 100644
--- a/gtk2_ardour/prompter.cc
+++ b/gtk2_ardour/prompter.cc
@@ -21,12 +21,12 @@
#include "prompter.h"
#include "ardour_ui.h"
-using namespace SigC;
+using namespace sigc;
ArdourPrompter::ArdourPrompter (bool modal)
- : Gtkmmext::Prompter (modal)
+ : Gtkmm2ext::Prompter (modal)
{
- the_entry().focus_in_event.connect (slot (ARDOUR_UI::generic_focus_in_event));
- the_entry().focus_out_event.connect (slot (ARDOUR_UI::generic_focus_out_event));
+ the_entry().signal_focus_in_event().connect (slot (ARDOUR_UI::generic_focus_in_event));
+ the_entry().signal_focus_out_event().connect (slot (ARDOUR_UI::generic_focus_out_event));
}