Allow more than one timer with the same ID. Closes #11699.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63422 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2010-02-08 20:06:04 +00:00
parent f2d7fdf7b0
commit 1ed7a2064a
2 changed files with 34 additions and 37 deletions

View File

@@ -19,7 +19,8 @@
class WXDLLIMPEXP_BASE wxMSWTimerImpl : public wxTimerImpl
{
public:
wxMSWTimerImpl(wxTimer *timer) : wxTimerImpl(timer) { m_id = 0; }
wxMSWTimerImpl(wxTimer *timer);
virtual ~wxMSWTimerImpl();
virtual bool Start(int milliseconds = -1, bool oneShot = false);
virtual void Stop();