diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-06-21 01:15:32 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-06-21 01:15:32 +0100 |
| commit | e60bb3e51bd1508b149e6b8f6608f09b5196ae26 (patch) | |
| tree | a7a5b937c9ae138d4eebca8d5130d308bf9ae420 /src/wx/timecode.cc | |
| parent | f07d5125a7b609320682689abe40781f096ca25e (diff) | |
No-op: remove all trailing whitespace.
Diffstat (limited to 'src/wx/timecode.cc')
| -rw-r--r-- | src/wx/timecode.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wx/timecode.cc b/src/wx/timecode.cc index 291a6ba58..8029d2f6a 100644 --- a/src/wx/timecode.cc +++ b/src/wx/timecode.cc @@ -30,7 +30,7 @@ TimecodeBase::TimecodeBase (wxWindow* parent) : wxPanel (parent) { wxSize const s = TimecodeBase::size (parent); - + wxTextValidator validator (wxFILTER_INCLUDE_CHAR_LIST); wxArrayString list; @@ -42,7 +42,7 @@ TimecodeBase::TimecodeBase (wxWindow* parent) validator.SetIncludes (list); _sizer = new wxBoxSizer (wxHORIZONTAL); - + _editable = new wxPanel (this); wxSizer* editable_sizer = new wxBoxSizer (wxHORIZONTAL); _hours = new wxTextCtrl (_editable, wxID_ANY, wxT(""), wxDefaultPosition, s, 0, validator); @@ -66,7 +66,7 @@ TimecodeBase::TimecodeBase (wxWindow* parent) _sizer->Add (_editable); _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)); |
