]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/timer.h
Make wxTLW::Raise() actually bring the window to the top
[wxWidgets.git] / include / wx / msw / timer.h
index 7cca85b1fa667629c98c6e4a7e9df929789680e3..ffa150e111c6a4b4224c4b092bc92aa67679b7b9 100644 (file)
@@ -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)