summaryrefslogtreecommitdiff
path: root/libs/ardour/connection.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/connection.cc')
-rw-r--r--libs/ardour/connection.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/connection.cc b/libs/ardour/connection.cc
index ea4e6d58e5..83e0a87dc1 100644
--- a/libs/ardour/connection.cc
+++ b/libs/ardour/connection.cc
@@ -224,12 +224,12 @@ Connection::set_connections (const string& str)
start += 1;
if ((end = str.find_first_of ('}', start)) == string::npos) {
- error << compose(_("IO: badly formed string in XML node for inputs \"%1\""), str) << endmsg;
+ error << string_compose(_("IO: badly formed string in XML node for inputs \"%1\""), str) << endmsg;
return -1;
}
if ((n = parse_io_string (str.substr (start, end - start), ports)) < 0) {
- error << compose(_("bad input string in XML node \"%1\""), str) << endmsg;
+ error << string_compose(_("bad input string in XML node \"%1\""), str) << endmsg;
return -1;