ENGINES: Silence compiler warnings
This commit is contained in:
parent
1362f14f55
commit
eff82fdc58
1 changed files with 3 additions and 3 deletions
|
@ -53,9 +53,9 @@ public:
|
|||
MainMenuDialog(Engine *engine);
|
||||
~MainMenuDialog();
|
||||
|
||||
virtual void handleCommand(GUI::CommandSender *sender, uint32 cmd, uint32 data);
|
||||
virtual void handleCommand(GUI::CommandSender *sender, uint32 cmd, uint32 data) override;
|
||||
|
||||
virtual void reflowLayout();
|
||||
virtual void reflowLayout() override;
|
||||
|
||||
protected:
|
||||
void save();
|
||||
|
@ -102,7 +102,7 @@ public:
|
|||
ExtraGuiOptionsWidget(GuiObject *widgetsBoss, const Common::String &name, const Common::String &domain, const ExtraGuiOptions &options);
|
||||
~ExtraGuiOptionsWidget() override;
|
||||
|
||||
virtual void handleCommand(GUI::CommandSender *sender, uint32 cmd, uint32 data);
|
||||
virtual void handleCommand(GUI::CommandSender *sender, uint32 cmd, uint32 data) override;
|
||||
|
||||
// OptionsContainerWidget API
|
||||
void load() override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue