(fixes #161) Deprecate EventId::IsRunning() and replace it with EventId::IsPending()

This commit is contained in:
Gabriel Ferreira
2024-05-06 21:39:37 +02:00
parent 21f3c98107
commit 01138ef2d7
58 changed files with 180 additions and 164 deletions

View File

@@ -76,7 +76,7 @@ TutorialApp::StopApplication()
{
m_running = false;
if (m_sendEvent.IsRunning())
if (m_sendEvent.IsPending())
{
Simulator::Cancel(m_sendEvent);
}