summaryrefslogtreecommitdiff
path: root/gtk2_ardour/route_time_axis.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-07-17 05:18:48 +0200
committerRobin Gareus <robin@gareus.org>2017-07-17 21:06:04 +0200
commit1f5ebc54853446a786925941bd014666e75221d2 (patch)
treed03e345ae56d5300b05280e8af75cd709b6ab92e /gtk2_ardour/route_time_axis.cc
parenteb1e423b7521d4c277c11a884113f40e7406ade8 (diff)
Remove ArdourPrompter wrapper
Diffstat (limited to 'gtk2_ardour/route_time_axis.cc')
-rw-r--r--gtk2_ardour/route_time_axis.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/route_time_axis.cc b/gtk2_ardour/route_time_axis.cc
index 7cce7e6979..816365948a 100644
--- a/gtk2_ardour/route_time_axis.cc
+++ b/gtk2_ardour/route_time_axis.cc
@@ -59,6 +59,7 @@
#include "gtkmm2ext/utils.h"
#include "widgets/ardour_button.h"
+#include "widgets/prompter.h"
#include "widgets/tooltips.h"
#include "ardour_ui.h"
@@ -74,7 +75,6 @@
#include "paste_context.h"
#include "playlist_selector.h"
#include "point_selection.h"
-#include "prompter.h"
#include "public_editor.h"
#include "region_view.h"
#include "rgb_macros.h"
@@ -1125,7 +1125,7 @@ RouteTimeAxisView::set_align_choice (RadioMenuItem* mitem, AlignChoice choice, b
void
RouteTimeAxisView::rename_current_playlist ()
{
- ArdourPrompter prompter (true);
+ Prompter prompter (true);
string name;
boost::shared_ptr<Track> tr = track();
@@ -1226,7 +1226,7 @@ RouteTimeAxisView::use_new_playlist (bool prompt, vector<boost::shared_ptr<Playl
// TODO: The prompter "new" button should be de-activated if the user
// specifies a playlist name which already exists in the session.
- ArdourPrompter prompter (true);
+ Prompter prompter (true);
if (copy) {
prompter.set_title (_("New Copy Playlist"));