mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-07 16:53:00 -07:00
add override specifier to tab subclasses (#5445)
This commit is contained in:
parent
2b296badea
commit
2851d0c7e6
11 changed files with 43 additions and 43 deletions
|
|
@ -91,10 +91,10 @@ public:
|
|||
AbstractClient *_client,
|
||||
ServerInfo_User *_ownUser,
|
||||
const ServerInfo_Room &info);
|
||||
~TabRoom();
|
||||
void retranslateUi();
|
||||
void closeRequest();
|
||||
void tabActivated();
|
||||
~TabRoom() override;
|
||||
void retranslateUi() override;
|
||||
void closeRequest() override;
|
||||
void tabActivated() override;
|
||||
void processRoomEvent(const RoomEvent &event);
|
||||
int getRoomId() const
|
||||
{
|
||||
|
|
@ -108,7 +108,7 @@ public:
|
|||
{
|
||||
return roomName;
|
||||
}
|
||||
QString getTabText() const
|
||||
QString getTabText() const override
|
||||
{
|
||||
return roomName;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue