summaryrefslogtreecommitdiff
path: root/src/wx/timing_panel.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx/timing_panel.cc')
-rw-r--r--src/wx/timing_panel.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/timing_panel.cc b/src/wx/timing_panel.cc
index 55c53e79d..cafb06dfc 100644
--- a/src/wx/timing_panel.cc
+++ b/src/wx/timing_panel.cc
@@ -247,10 +247,10 @@ TimingPanel::film_content_changed (int property)
}
}
if (check.size() == 1) {
- _video_frame_rate->SetValue (std_to_wx (raw_convert<string> (vc->video_frame_rate (), 5)));
+ checked_set (_video_frame_rate, raw_convert<string> (vc->video_frame_rate (), 5));
_video_frame_rate->Enable (true);
} else {
- _video_frame_rate->SetValue ("");
+ checked_set (_video_frame_rate, wxT (""));
_video_frame_rate->Enable (false);
}
}