1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-28 08:48:48 +02:00

SonarCloud fixes

This commit is contained in:
Ivan Savenko 2024-04-26 17:57:16 +03:00
parent eaae78da7a
commit 0c24c93c8c

View File

@ -13,14 +13,14 @@
class CBonusSelection;
class CLobbyScreen : public CSelectionBase
class CLobbyScreen final : public CSelectionBase
{
public:
std::shared_ptr<CButton> buttonChat;
CLobbyScreen(ESelectionScreen type);
~CLobbyScreen();
void toggleTab(std::shared_ptr<CIntObject> tab) override;
void toggleTab(std::shared_ptr<CIntObject> tab) final;
void startCampaign();
void startScenario(bool allowOnlyAI = false);
void toggleMode(bool host);
@ -28,8 +28,8 @@ public:
void updateAfterStateChange();
const CMapInfo * getMapInfo() override;
const StartInfo * getStartInfo() override;
const CMapInfo * getMapInfo() final;
const StartInfo * getStartInfo() final;
std::shared_ptr<CBonusSelection> bonusSel;
};