summaryrefslogtreecommitdiff
path: root/gtk2_ardour/about.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-09-17 20:51:11 +0200
committerRobin Gareus <robin@gareus.org>2015-09-17 20:51:11 +0200
commit17baf9362641f024440b61cecc176ee9096e1418 (patch)
tree041cf06245535ce81723303e37d9b3320a9a10e7 /gtk2_ardour/about.cc
parente44212321e436ee12bffb76361202b5efc83a172 (diff)
work around bug or feature of string_compose()
string_compose("x%1x x%2x x%3x", "A", "", "C") -> "xAx xCx xx" and not -> "xAx xx xCx"
Diffstat (limited to 'gtk2_ardour/about.cc')
-rw-r--r--gtk2_ardour/about.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/about.cc b/gtk2_ardour/about.cc
index 1288fc599c..051b13f575 100644
--- a/gtk2_ardour/about.cc
+++ b/gtk2_ardour/about.cc
@@ -605,7 +605,7 @@ About::About ()
#endif
std::string codename = CODENAME;
if (ARDOUR::Profile->get_mixbus() || ARDOUR::Profile->get_trx()) {
- codename = "";
+ codename = " ";
}
set_translator_credits (t);