]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/timercmn.cpp
some wxArtProv docs
[wxWidgets.git] / src / common / timercmn.cpp
index 3ff1adf9d1dc7c50ce30dfb3b8e020532e8fed06..1d89b6507d7184c607b8ecfdb7e257eb4bac6318 100644 (file)
 
 #if wxUSE_GUI && wxUSE_TIMER
 
+wxTimerBase::~wxTimerBase()
+{
+    // this destructor is required for Darwin
+}
+
 void wxTimerBase::Notify()
 {
     // the base class version generates an event if it has owner - which it
@@ -156,12 +161,12 @@ void wxStopWatch::Start(long t)
 
 long wxStopWatch::GetElapsedTime() const
 {
-  return (wxGetLocalTimeMillis() - m_t0).GetLo();
+    return (wxGetLocalTimeMillis() - m_t0).GetLo();
 }
 
 long wxStopWatch::Time() const
 {
-    return (m_pause ? m_pause : GetElapsedTime());
+    return m_pauseCount ? m_pause : GetElapsedTime();
 }
 
 #endif // wxUSE_LONGLONG