Tidy up window titles, according to GNOME HIG and as suggested in mantis 2803.

git-svn-id: svn://localhost/ardour2/branches/3.0@5805 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2009-10-19 17:25:37 +00:00
parent 539a692b0e
commit 09ec342926
24 changed files with 40 additions and 109 deletions

View file

@ -19,14 +19,12 @@
#include <gtkmm/table.h>
#include <gtkmm/stock.h>
#include <gtkmm2ext/window_title.h>
#include "ardour/route_group.h"
#include "route_group_dialog.h"
#include "i18n.h"
#include <iostream>
using namespace Gtk;
using namespace Gtkmm2ext;
using namespace ARDOUR;
using namespace std;
@ -48,9 +46,7 @@ RouteGroupDialog::RouteGroupDialog (RouteGroup* g, StockID const & s)
set_position (Gtk::WIN_POS_MOUSE);
set_name (N_("RouteGroupDialog"));
WindowTitle title (Glib::get_application_name());
title += _("Route group");
set_title(title.get_string());
set_title (_("Route Group"));
VBox* vbox = manage (new VBox);
Gtk::Label* l;