X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/eccd1992237c9b8bbe02a9eda66b709fd7ecea73..48f7ffbe93ab587c54643e2476b0e3b0c74e1386:/include/wx/msw/timer.h diff --git a/include/wx/msw/timer.h b/include/wx/msw/timer.h index 7cca85b1fa..ffa150e111 100644 --- a/include/wx/msw/timer.h +++ b/include/wx/msw/timer.h @@ -22,11 +22,11 @@ friend void wxProcessTimer(wxTimer& timer); public: wxTimer() { Init(); } - wxTimer(wxEvtHandler *owner, int id = -1) : wxTimerBase(owner, id) + wxTimer(wxEvtHandler *owner, int id = wxID_ANY) : wxTimerBase(owner, id) { Init(); } ~wxTimer(); - virtual bool Start(int milliseconds = -1, bool oneShot = FALSE); + virtual bool Start(int milliseconds = -1, bool oneShot = false); virtual void Stop(); virtual bool IsRunning() const { return m_id != 0; } @@ -34,8 +34,7 @@ public: protected: void Init(); - long m_id; - WXHWND m_hwnd; + unsigned long m_id; private: DECLARE_DYNAMIC_CLASS_NO_COPY(wxTimer)