return true;
}
-void wxTimerScheduler::NotifyExpired()
+bool wxTimerScheduler::NotifyExpired()
{
if ( m_timers.empty() )
- return;
+ return false;
+
+ bool notified = false;
const wxUsecClock_t now = wxGetLocalTimeUsec();
// and finally notify the timer
timer->Notify();
+ notified = true;
}
+
+ return notified;
}
// ============================================================================