Codechange: make EventState a scoped enum

This commit is contained in:
Rubidium
2026-06-14 21:29:41 +02:00
committed by rubidium42
parent 2df98643ad
commit 5a6469ad6f
28 changed files with 147 additions and 147 deletions
+2 -2
View File
@@ -832,10 +832,10 @@ public:
{
if (keycode == WKC_ESC) {
this->Close();
return ES_HANDLED;
return EventState::Handled;
}
return ES_NOT_HANDLED;
return EventState::NotHandled;
}
void OnTimeout() override