summaryrefslogtreecommitdiff
path: root/gtk2_ardour/route_ui.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-10-15 11:24:15 +0200
committerRobin Gareus <robin@gareus.org>2015-10-15 11:24:15 +0200
commit696b89b71a895dff732c734cdaa30a2e119292c8 (patch)
tree6251564deae520b45c88e9477dc659a7cb2f0c8c /gtk2_ardour/route_ui.cc
parent79142a262ec0a02f9a43a71dd226f78a1d7cbeed (diff)
rework 8b80fe0, use std::string, not char*
Diffstat (limited to 'gtk2_ardour/route_ui.cc')
-rw-r--r--gtk2_ardour/route_ui.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/route_ui.cc b/gtk2_ardour/route_ui.cc
index 68d00baa2f..79506f7bd3 100644
--- a/gtk2_ardour/route_ui.cc
+++ b/gtk2_ardour/route_ui.cc
@@ -1961,7 +1961,7 @@ RouteUI::open_remote_control_id_dialog ()
if (_route->is_master() || _route->is_monitor()) {
l->set_markup (string_compose (_("The remote control ID of %1 is: %2\n\n\n"
"The remote control ID of %3 cannot be changed."),
- Glib::Markup::escape_text (_route->name()),
+ Gtkmm2ext::markup_escape_text (_route->name()),
_route->remote_control_id(),
(_route->is_master() ? _("the master bus") : _("the monitor bus"))));
} else {
@@ -1972,7 +1972,7 @@ RouteUI::open_remote_control_id_dialog ()
_route->remote_control_id(),
"<span size=\"small\" style=\"italic\">",
"</span>",
- Glib::Markup::escape_text (_route->name()),
+ Gtkmm2ext::markup_escape_text (_route->name()),
PROGRAM_NAME));
}
dialog.get_vbox()->pack_start (*l);