summaryrefslogtreecommitdiff
path: root/libs/ardour/stateful.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/stateful.cc')
-rw-r--r--libs/ardour/stateful.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/stateful.cc b/libs/ardour/stateful.cc
index 7b63d01aad..d08be38ecd 100644
--- a/libs/ardour/stateful.cc
+++ b/libs/ardour/stateful.cc
@@ -97,7 +97,7 @@ Stateful::add_instant_xml (XMLNode& node, const string& dir)
tree.set_root (copy);
if (!tree.write()) {
- error << compose(_("Error: could not write %1"), dir+"/instant.xml") << endmsg;
+ error << string_compose(_("Error: could not write %1"), dir+"/instant.xml") << endmsg;
}
}
@@ -111,7 +111,7 @@ Stateful::instant_xml (const string& str, const string& dir)
if (tree.read(dir+"/instant.xml")) {
_instant_xml = new XMLNode(*(tree.root()));
} else {
- warning << compose(_("Could not understand XML file %1"), instant_file) << endmsg;
+ warning << string_compose(_("Could not understand XML file %1"), instant_file) << endmsg;
return 0;
}
} else {