summaryrefslogtreecommitdiff
path: root/src/wx/timecode.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-11-19 21:30:00 +0000
committerCarl Hetherington <cth@carlh.net>2016-11-19 21:30:00 +0000
commitad5c8849fc3ef5aad88201f28db5474a60db4436 (patch)
treecd94fc66f644e96de1e65b3deda3a599361f2f01 /src/wx/timecode.cc
parentf113b2aaca7a65f7b37e12a7d9f3f99e2d834e81 (diff)
No-op; rename a whole load of wx constants to their shorter equivalents.
Diffstat (limited to 'src/wx/timecode.cc')
-rw-r--r--src/wx/timecode.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/wx/timecode.cc b/src/wx/timecode.cc
index 454614a1b..699687a95 100644
--- a/src/wx/timecode.cc
+++ b/src/wx/timecode.cc
@@ -70,12 +70,12 @@ TimecodeBase::TimecodeBase (wxWindow* parent, bool set_button)
_fixed = add_label_to_sizer (_sizer, this, wxT ("42"), false);
- _hours->Bind (wxEVT_COMMAND_TEXT_UPDATED, boost::bind (&TimecodeBase::changed, this));
- _minutes->Bind (wxEVT_COMMAND_TEXT_UPDATED, boost::bind (&TimecodeBase::changed, this));
- _seconds->Bind (wxEVT_COMMAND_TEXT_UPDATED, boost::bind (&TimecodeBase::changed, this));
- _frames->Bind (wxEVT_COMMAND_TEXT_UPDATED, boost::bind (&TimecodeBase::changed, this));
+ _hours->Bind (wxEVT_TEXT, boost::bind (&TimecodeBase::changed, this));
+ _minutes->Bind (wxEVT_TEXT, boost::bind (&TimecodeBase::changed, this));
+ _seconds->Bind (wxEVT_TEXT, boost::bind (&TimecodeBase::changed, this));
+ _frames->Bind (wxEVT_TEXT, boost::bind (&TimecodeBase::changed, this));
if (_set_button) {
- _set_button->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&TimecodeBase::set_clicked, this));
+ _set_button->Bind (wxEVT_BUTTON, boost::bind (&TimecodeBase::set_clicked, this));
_set_button->Enable (false);
}