Codechange: make EventState a scoped enum

This commit is contained in:
Rubidium
2026-06-15 11:20:52 +02:00
committed by rubidium42
parent 2df98643ad
commit 5a6469ad6f
28 changed files with 147 additions and 147 deletions
+2 -2
View File
@@ -266,9 +266,9 @@ public:
/* Build the requested bridge */
this->BuildBridge(this->bridges[i].index);
this->Close();
return ES_HANDLED;
return EventState::Handled;
}
return ES_NOT_HANDLED;
return EventState::NotHandled;
}
void OnClick([[maybe_unused]] Point pt, WidgetID widget, [[maybe_unused]] int click_count) override