summaryrefslogtreecommitdiff
path: root/gtk2_ardour/marker_time_axis.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2005-10-06 04:59:20 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2005-10-06 04:59:20 +0000
commita0663fbd278f4514ba26c4a4c0e2aa5ec2964dd9 (patch)
tree0505a7b5fc3c21111cf09279b16bd615e2c5df4b /gtk2_ardour/marker_time_axis.cc
parent60f817b0d2411947c257ecbf0b0376589ea77acd (diff)
a few more header files fixes, plus cleanup from nick_m, and the start of Action/UIManager adoption
git-svn-id: svn://localhost/trunk/ardour2@48 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/marker_time_axis.cc')
-rw-r--r--gtk2_ardour/marker_time_axis.cc28
1 files changed, 0 insertions, 28 deletions
diff --git a/gtk2_ardour/marker_time_axis.cc b/gtk2_ardour/marker_time_axis.cc
index 87a439980a..931ffd6aee 100644
--- a/gtk2_ardour/marker_time_axis.cc
+++ b/gtk2_ardour/marker_time_axis.cc
@@ -303,31 +303,3 @@ MarkerTimeAxis::get_marked_time_axis()
-/**
- * Handle the closing of the renaming dialog during the rename of this item
- */
-void
-MarkerTimeAxis::finish_route_rename()
-{
- name_prompter->hide_all ();
- ARDOUR_UI::instance()->allow_focus (false);
-
- if (name_prompter->status == Gtkmm2ext::Prompter::cancelled) {
- return;
- }
-
- string result;
- name_prompter->get_result(result);
- time_axis_name = result ;
- editor.route_name_changed(this) ;
- label_view() ;
- delete name_prompter ;
- name_prompter = 0 ;
-}
-
-
-
-
-
-
-