]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_timer.i
Lots of tweaks and additions to get caught up with CVS HEAD
[wxWidgets.git] / wxPython / src / _timer.i
index e09e7509d037d6db899a2e2a5554c4394ce88084..b84e0db64b13bbad2a045aee862c814b9865daee 100644 (file)
@@ -80,7 +80,7 @@ public:
     //
     // 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);
+    virtual bool Start(int milliseconds = -1, bool oneShot = false);
 
     // stop the timer
     virtual void Stop();
@@ -138,10 +138,10 @@ class wxTimerRunner
 public:
     %nokwargs wxTimerRunner;
     wxTimerRunner(wxTimer& timer);
-    wxTimerRunner(wxTimer& timer, int milli, bool oneShot = False);
+    wxTimerRunner(wxTimer& timer, int milli, bool oneShot = false);
     ~wxTimerRunner();
 
-    void Start(int milli, bool oneShot = False);
+    void Start(int milli, bool oneShot = false);
 };