1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-26 00:04:43 +01:00

Fix CI errors

This commit is contained in:
Ted John
2021-02-24 22:54:53 +00:00
parent c2183989a5
commit d64bd60278
3 changed files with 6 additions and 7 deletions

View File

@@ -385,7 +385,7 @@ namespace OpenRCT2::Ui::Windows
static void InvokeEventHandler(
const std::shared_ptr<Plugin>& owner, const DukValue& dukHandler, const std::vector<DukValue>& args);
class CustomWindow : public Window
class CustomWindow final : public Window
{
private:
static rct_windownumber _nextWindowNumber;
@@ -694,7 +694,7 @@ namespace OpenRCT2::Ui::Windows
}
}
void OnTextInput(rct_widgetindex widgetIndex, std::string_view text)
void OnTextInput(rct_widgetindex widgetIndex, std::string_view text) override
{
auto& info = GetInfo(this);
auto widgetDesc = info.GetCustomWidgetDesc(this, widgetIndex);