From 5553c7cfe0d33bf0f84e2367503d3d0eef59d352 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 14 Jan 2003 22:22:27 +0000 Subject: [PATCH] Start() should resume the stopwatch if it is suspended git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18734 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- docs/changes.txt | 8 ++++++-- src/common/timercmn.cpp | 1 + 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/changes.txt b/docs/changes.txt index ee27a4fe09..d91188d161 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -13,13 +13,17 @@ OTHER CHANGES All: +- added wxDateSpan::operator==() and !=() (Lukasz Michalski) +- use true/false throughout the library instead of TRUE/FALSE +- wxStopWatch::Start() resumes the stop watch if paused, as per the docs + +All GUI ports: + - implemented GetEditControl for wxGenericTreeCtrl (Peter Stieber) - improved contrib/utils/convertrc parsing (David J. Cooke) - fixed handling of URLs and filenames in wxFileSystem - implemented alignment for wxGrid bool editor and renderer - support wxListCtrl columns alignment for all platforms and not just MSW -- added wxDateSpan::operator==() and !=() (Lukasz Michalski) -- use true/false throughout the library instead of TRUE/FALSE - Changed to type-safe wxSizerItemList for wxSizer child items. Deprecated: diff --git a/src/common/timercmn.cpp b/src/common/timercmn.cpp index 28f69dae3b..42acd79d4e 100644 --- a/src/common/timercmn.cpp +++ b/src/common/timercmn.cpp @@ -169,6 +169,7 @@ void wxStopWatch::Start(long t) { m_t0 = wxGetLocalTimeMillis() - t; m_pause = 0; + m_pauseCount = 0; } long wxStopWatch::GetElapsedTime() const -- 2.45.2