Apply new patch fixing problem of IsRunning always returning True. See #11699

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63486 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2010-02-15 17:34:21 +00:00
parent ec073e73d1
commit b6ae7297d2
2 changed files with 4 additions and 13 deletions

View File

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