summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_timefx.cc
diff options
context:
space:
mode:
authorBen Loftis <ben@glw.com>2009-10-20 22:40:55 +0000
committerBen Loftis <ben@glw.com>2009-10-20 22:40:55 +0000
commitbcc7af086e72ef9a6e01b08796c2252db7875b7a (patch)
tree8cbbc624aeec9cc2f3783d2d26d1a4bf444a5372 /gtk2_ardour/editor_timefx.cc
parent114b5114134cf6e8b4422ea9ee46b231cda29ef0 (diff)
clean up Window titles for consistency
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@5830 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_timefx.cc')
-rw-r--r--gtk2_ardour/editor_timefx.cc7
1 files changed, 2 insertions, 5 deletions
diff --git a/gtk2_ardour/editor_timefx.cc b/gtk2_ardour/editor_timefx.cc
index 4d1eaa66b9..543c1821e0 100644
--- a/gtk2_ardour/editor_timefx.cc
+++ b/gtk2_ardour/editor_timefx.cc
@@ -27,7 +27,6 @@
#include <pbd/pthread_utils.h>
#include <pbd/memento_command.h>
-#include <gtkmm2ext/window_title.h>
#include <gtkmm2ext/utils.h>
#include "editor.h"
@@ -78,13 +77,11 @@ Editor::TimeFXDialog::TimeFXDialog (Editor& e, bool pitch)
set_position (Gtk::WIN_POS_MOUSE);
set_name (N_("TimeFXDialog"));
- WindowTitle title(Glib::get_application_name());
if (pitching) {
- title += _("Pitch Shift");
+ set_title(_("Pitch Shift"));
} else {
- title += _("Time Stretch");
+ set_title(_("Time Stretch"));
}
- set_title(title.get_string());
cancel_button = add_button (_("Cancel"), Gtk::RESPONSE_CANCEL);