summaryrefslogtreecommitdiff
path: root/src/wx/kdm_timing_panel.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-06-16 00:46:26 +0100
committerCarl Hetherington <cth@carlh.net>2016-06-16 00:46:26 +0100
commit5b7c8b06f7d9ea910020b4620c234cf0dce95a66 (patch)
tree82591e59c6f48d1bae95a45e01d54e4e706dfbd0 /src/wx/kdm_timing_panel.h
parentfaeda64d4829a3717762778f48607f1cb750f4d5 (diff)
Remove seconds from KDM time period specification (#819).
Diffstat (limited to 'src/wx/kdm_timing_panel.h')
-rw-r--r--src/wx/kdm_timing_panel.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wx/kdm_timing_panel.h b/src/wx/kdm_timing_panel.h
index e23a235f4..368b45146 100644
--- a/src/wx/kdm_timing_panel.h
+++ b/src/wx/kdm_timing_panel.h
@@ -23,7 +23,7 @@
#include <boost/signals2.hpp>
class wxDatePickerCtrl;
-class wxTimePickerCtrl;
+class TimePicker;
class KDMTimingPanel : public wxPanel
{
@@ -41,11 +41,11 @@ public:
private:
void changed () const;
- static boost::posix_time::ptime posix_time (wxDatePickerCtrl *, wxTimePickerCtrl *);
+ static boost::posix_time::ptime posix_time (wxDatePickerCtrl *, TimePicker *);
wxDatePickerCtrl* _from_date;
wxDatePickerCtrl* _until_date;
- wxTimePickerCtrl* _from_time;
- wxTimePickerCtrl* _until_time;
+ TimePicker* _from_time;
+ TimePicker* _until_time;
wxStaticText* _warning;
};