summaryrefslogtreecommitdiff
path: root/src/tools/dcpomatic.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-08-11 22:39:20 +0100
committerCarl Hetherington <cth@carlh.net>2014-08-11 22:39:20 +0100
commitcc27c2716f755305d67f1e1ba828ecf37f8405dd (patch)
tree224d2b1c469bc671e6b826e8a535f61f6459bc81 /src/tools/dcpomatic.cc
parent4ddf91dda7d84f169e4b905fd41cf747f4a0102c (diff)
parent491daf8790f35611052d8954d5d74df275dcda18 (diff)
Merge master.
Diffstat (limited to 'src/tools/dcpomatic.cc')
-rw-r--r--src/tools/dcpomatic.cc7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc
index e67703b22..8c7f09ae7 100644
--- a/src/tools/dcpomatic.cc
+++ b/src/tools/dcpomatic.cc
@@ -338,13 +338,12 @@ private:
void file_changed (boost::filesystem::path f)
{
- stringstream s;
- s << wx_to_std (_("DCP-o-matic"));
+ string s = wx_to_std (_("DCP-o-matic"));
if (!f.empty ()) {
- s << " - " << f.string ();
+ s += " - " + f.string ();
}
- SetTitle (std_to_wx (s.str()));
+ SetTitle (std_to_wx (s));
}
void file_new ()