]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/timer.h
Document wxKill(wxSIGTERM) reliance on having an open window in wxMSW.
[wxWidgets.git] / include / wx / timer.h
index 0b9a63b0825b9a0596a065d76ef059bea93af8af..035b2993591b0c9c9e7de396b7bdc6520410d8b8 100644 (file)
@@ -81,6 +81,10 @@ public:
     // timer if it is already running
     virtual bool Start(int milliseconds = -1, bool oneShot = false);
 
+    // start the timer for one iteration only, this is just a simple wrapper
+    // for Start()
+    bool StartOnce(int milliseconds = -1) { return Start(milliseconds, true); }
+
     // stop the timer, does nothing if the timer is not running
     virtual void Stop();