summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-03-25 23:55:12 +0000
committerCarl Hetherington <cth@carlh.net>2013-03-25 23:55:12 +0000
commit9a47f2dfa7e166dc7a07fafd2cb7d41f64957fc7 (patch)
tree21f8e6b83aeffe43605a99f67deee2105861bad2
parent99d08c12756cd936585d777b7a91ecbba35fa4c3 (diff)
Fixes to previous.
-rw-r--r--src/wx/film_editor.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/film_editor.cc b/src/wx/film_editor.cc
index cb596d6e0..ec99f4d9d 100644
--- a/src/wx/film_editor.cc
+++ b/src/wx/film_editor.cc
@@ -688,10 +688,10 @@ FilmEditor::film_changed (Film::Property p)
case Film::LENGTH:
if (_film->source_frame_rate() > 0 && _film->length()) {
s << _film->length().get() << " "
- << std_to_wx (_("frames")) << "; " << seconds_to_hms (_film->length().get() / _film->source_frame_rate());
+ << wx_to_std (_("frames")) << "; " << seconds_to_hms (_film->length().get() / _film->source_frame_rate());
} else if (_film->length()) {
s << _film->length().get() << " "
- << std_to_wx (_("frames"));
+ << wx_to_std (_("frames"));
}
_length->SetLabel (std_to_wx (s.str ()));
if (_film->length()) {