mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-22 23:33:04 +01:00
Rename snake_case Class names (Remaining Bits) (#19237)
* Rename snake_case Class names * Clang format * Fix build issues
This commit is contained in:
@@ -15,27 +15,27 @@ namespace OpenRCT2::Ui
|
||||
class DummyWindowManager final : public IWindowManager
|
||||
{
|
||||
void Init() override{};
|
||||
rct_window* OpenWindow(WindowClass /*wc*/) override
|
||||
WindowBase* OpenWindow(WindowClass /*wc*/) override
|
||||
{
|
||||
return nullptr;
|
||||
}
|
||||
rct_window* OpenView(uint8_t /*view*/) override
|
||||
WindowBase* OpenView(uint8_t /*view*/) override
|
||||
{
|
||||
return nullptr;
|
||||
}
|
||||
rct_window* OpenDetails(uint8_t /*type*/, int32_t /*id*/) override
|
||||
WindowBase* OpenDetails(uint8_t /*type*/, int32_t /*id*/) override
|
||||
{
|
||||
return nullptr;
|
||||
}
|
||||
rct_window* ShowError(StringId /*title*/, StringId /*message*/, const Formatter& /*formatter*/) override
|
||||
WindowBase* ShowError(StringId /*title*/, StringId /*message*/, const Formatter& /*formatter*/) override
|
||||
{
|
||||
return nullptr;
|
||||
}
|
||||
rct_window* ShowError(std::string_view /*title*/, std::string_view /*message*/) override
|
||||
WindowBase* ShowError(std::string_view /*title*/, std::string_view /*message*/) override
|
||||
{
|
||||
return nullptr;
|
||||
}
|
||||
rct_window* OpenIntent(Intent* /*intent*/) override
|
||||
WindowBase* OpenIntent(Intent* /*intent*/) override
|
||||
{
|
||||
return nullptr;
|
||||
};
|
||||
@@ -64,7 +64,7 @@ namespace OpenRCT2::Ui
|
||||
void UpdateMouseWheel() override
|
||||
{
|
||||
}
|
||||
rct_window* GetOwner(const rct_viewport* viewport) override
|
||||
WindowBase* GetOwner(const Viewport* viewport) override
|
||||
{
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user