summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-08-19 16:43:45 +0200
committerCarl Hetherington <cth@carlh.net>2024-08-19 16:43:45 +0200
commit80d5c42bd9ad8cf0d915f589635bb90a378cf4d4 (patch)
tree6db5ccdd6ae4dc5c16bddd4062620f51d6602e15 /src/tools
parenta0428561bd86c66673e709b15e679e7933673fb7 (diff)
fixup! Remove some implicit conversions between wxString and std::string.
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/dcpomatic.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc
index 6dfaaf1a8..e80bfc333 100644
--- a/src/tools/dcpomatic.cc
+++ b/src/tools/dcpomatic.cc
@@ -575,7 +575,7 @@ private:
}
}
wxString message = _("Could not create folder to store film.");
- message += " ";
+ message += char_to_wx(" ");
if (!found_bad_chars.empty()) {
message += wxString::Format (_("Try removing the %s characters from your folder name."), std_to_wx(found_bad_chars).data());
} else {