]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/timer.h
fixed crash in wxColour ctor after RGBA-ization
[wxWidgets.git] / include / wx / msw / timer.h
index afcd4c21e6b021635fe149149e65ddfcc85a6e91..ad80f5080ce9408b444f7fce40d6efea4c53f067 100644 (file)
 #ifndef _WX_TIMER_H_
 #define _WX_TIMER_H_
 
-#ifdef __GNUG__
-    #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 ~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,7 +30,7 @@ public:
 protected:
     void Init();
 
-    long m_id;
+    unsigned long m_id;
 
 private:
     DECLARE_DYNAMIC_CLASS_NO_COPY(wxTimer)