summaryrefslogtreecommitdiff
path: root/gtk2_ardour/route_ui.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/route_ui.cc')
-rw-r--r--gtk2_ardour/route_ui.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/gtk2_ardour/route_ui.cc b/gtk2_ardour/route_ui.cc
index 90de21d854..f3193f20e7 100644
--- a/gtk2_ardour/route_ui.cc
+++ b/gtk2_ardour/route_ui.cc
@@ -1368,10 +1368,14 @@ RouteUI::idle_remove_this_route (RouteUI *rui)
bool
RouteUI::verify_new_route_name (const std::string& name)
{
- if (name.find (':') == string::npos) {
+ string::size_type colon = name.find (':');
+
+ if (colon == string::npos) {
return true;
}
+ cerr << "There is a colon in " << name << " at pos " << colon << endl;
+
MessageDialog colon_msg (
_("The use of colons (':') is discouraged in track and bus names.\nDo you want to use this new name?"),
false, MESSAGE_QUESTION, BUTTONS_NONE