summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-03-26 16:59:30 +0000
committerCarl Hetherington <cth@carlh.net>2013-03-26 16:59:30 +0000
commit09594dda3d006672309dbe2f886563f4ef5d2ab6 (patch)
treeb4effc0df6f91346db318f9fa615ab20d4b96101 /src/tools
parentba0a895137b630f5d308b123ef886d68090f855d (diff)
Try to fix mangled wx/std string conversions.
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/dvdomatic.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/dvdomatic.cc b/src/tools/dvdomatic.cc
index 66f366a24..2ad41b2cb 100644
--- a/src/tools/dvdomatic.cc
+++ b/src/tools/dvdomatic.cc
@@ -328,7 +328,7 @@ private:
} catch (std::exception& e) {
wxString p = c->GetPath ();
wxCharBuffer b = p.ToUTF8 ();
- error_dialog (this, wxString::Format (_("Could not open film at %s (%s)"), p.data(), e.what()));
+ error_dialog (this, wxString::Format (_("Could not open film at %s (%s)"), p.data(), std_to_wx (e.what())));
}
}