From 9a47f2dfa7e166dc7a07fafd2cb7d41f64957fc7 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 25 Mar 2013 23:55:12 +0000 Subject: Fixes to previous. --- src/wx/film_editor.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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()) { -- cgit v1.2.3