X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..259c43f679ca655362b5a439e11c87fc0666d663:/include/wx/generic/timer.h diff --git a/include/wx/generic/timer.h b/include/wx/generic/timer.h index 7b3c3d7ff6..e184a1ea16 100644 --- a/include/wx/generic/timer.h +++ b/include/wx/generic/timer.h @@ -4,17 +4,13 @@ // Author: Vaclav Slavik // Id: $Id$ // Copyright: (c) Vaclav Slavik -// 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 - //----------------------------------------------------------------------------- // wxTimer //----------------------------------------------------------------------------- @@ -29,7 +25,7 @@ public: { Init(); } ~wxTimer(); - virtual bool Start(int millisecs = -1, bool oneShot = FALSE); + virtual bool Start(int millisecs = -1, bool oneShot = false); virtual void Stop(); virtual bool IsRunning() const; @@ -42,7 +38,7 @@ protected: private: wxTimerDesc *m_desc; - + DECLARE_ABSTRACT_CLASS(wxTimer) };