X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0470b1e6fe7a49bb87756006ef9fc232e3dbaaf8..c5c04fabb02c27bcc8115bff024d74ddd48f8175:/include/wx/msw/timer.h diff --git a/include/wx/msw/timer.h b/include/wx/msw/timer.h index 308257acba..104a7fffb0 100644 --- a/include/wx/msw/timer.h +++ b/include/wx/msw/timer.h @@ -21,7 +21,9 @@ class WXDLLEXPORT wxTimer : public wxTimerBase friend void wxProcessTimer(wxTimer& timer); public: - wxTimer(); + wxTimer() { Init(); } + wxTimer(wxEvtHandler *owner, int id = -1) : wxTimerBase(owner, id) + { Init(); } ~wxTimer(); virtual bool Start(int milliseconds = -1, bool oneShot = FALSE); @@ -30,6 +32,8 @@ public: virtual bool IsRunning() const { return m_id != 0; } protected: + void Init(); + long m_id; private: