#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
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