summaryrefslogtreecommitdiff
path: root/src/wx/timecode.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-08-08 20:00:15 +0100
committerCarl Hetherington <cth@carlh.net>2014-08-08 20:00:15 +0100
commit864467b923a8df73af37e3f662d2889735a7f95d (patch)
tree5a0f78cd13a47ad185134c6e6076367502acb8a4 /src/wx/timecode.cc
parent39974161027c6f709828ed1f12b311198c6d1d29 (diff)
Allow support for changing timing details on multiple content simultaneously.
Diffstat (limited to 'src/wx/timecode.cc')
-rw-r--r--src/wx/timecode.cc10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/wx/timecode.cc b/src/wx/timecode.cc
index ee5b5604b..166446d8c 100644
--- a/src/wx/timecode.cc
+++ b/src/wx/timecode.cc
@@ -122,6 +122,16 @@ Timecode::get (int fps) const
}
void
+Timecode::clear ()
+{
+ checked_set (_hours, "");
+ checked_set (_minutes, "");
+ checked_set (_seconds, "");
+ checked_set (_frames, "");
+ _fixed->SetLabel ("");
+}
+
+void
Timecode::changed ()
{
_set_button->Enable (true);