]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/timer.h
refactored code to do brush adjustment for bg drawing in only one place
[wxWidgets.git] / include / wx / msw / timer.h
index afcd4c21e6b021635fe149149e65ddfcc85a6e91..ffa150e111c6a4b4224c4b092bc92aa67679b7b9 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef _WX_TIMER_H_
 #define _WX_TIMER_H_
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
     #pragma interface "timer.h"
 #endif
 
@@ -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,7 +34,7 @@ public:
 protected:
     void Init();
 
-    long m_id;
+    unsigned long m_id;
 
 private:
     DECLARE_DYNAMIC_CLASS_NO_COPY(wxTimer)