X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..706e740f5025073df75acbb8ed115f4898696f70:/include/wx/msw/timer.h diff --git a/include/wx/msw/timer.h b/include/wx/msw/timer.h index 7e2d20f77f..0607121c6c 100644 --- a/include/wx/msw/timer.h +++ b/include/wx/msw/timer.h @@ -6,27 +6,23 @@ // Created: 01/02/97 // RCS-ID: $Id$ // Copyright: (c) Julian Smart -// Licence: wxWidgets licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef _WX_TIMER_H_ #define _WX_TIMER_H_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma interface "timer.h" -#endif - class WXDLLEXPORT wxTimer : public wxTimerBase { 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; }