]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/timer.h
Forgot to update this enhancement from last weekend
[wxWidgets.git] / include / wx / timer.h
index 7ea894d04a1135cd4ab0807d32ec5fcdf1d12711..8c1724df97699b953667afa4f7696ce8af991066 100644 (file)
@@ -54,18 +54,10 @@ public:
 
     // start the timer: if milliseconds == -1, use the same value as for the
     // last Start()
-    virtual bool Start(int milliseconds = -1, bool oneShot = FALSE)
-    {
-        if ( milliseconds != -1 )
-        {
-            m_milli = milliseconds;
-        }
-
-        m_oneShot = oneShot;
-
-        return TRUE;
-    }
-
+    //
+    // it is now valid to call Start() multiple times: this just restarts the
+    // timer if it is already running
+    virtual bool Start(int milliseconds = -1, bool oneShot = FALSE);
 
     // stop the timer
     virtual void Stop() = 0;