From a08e7186b4563c4f17622c2cddbd9dd04d4d8a55 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 13 Feb 2003 00:22:36 +0000 Subject: [PATCH] added an assert checking that Resume() is not called unnecessarily git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19202 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/timer.h | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/include/wx/timer.h b/include/wx/timer.h index d6fcce73d0..ac5e649571 100644 --- a/include/wx/timer.h +++ b/include/wx/timer.h @@ -205,10 +205,21 @@ public: void Start(long t0 = 0); // pause the stop watch - void Pause() { if ( !m_pauseCount++) m_pause = GetElapsedTime(); } + void Pause() + { + if ( !m_pauseCount++ ) + m_pause = GetElapsedTime(); + } // resume it - void Resume() { if ( !--m_pauseCount ) Start(m_pause); } + void Resume() + { + wxASSERT_MSG( m_pauseCount > 0, + _T("Resuming stop watch which is not paused") ); + + if ( !--m_pauseCount ) + Start(m_pause); + } // get elapsed time since the last Start() in milliseconds long Time() const; -- 2.45.2