[Fix-Warnings] Remove more redundant empty declarations. (extra semicolons) (#6374)

This commit is contained in:
BruebachL 2025-11-29 14:19:11 +01:00 committed by GitHub
parent 858361e6d3
commit 8abd04dab1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
21 changed files with 37 additions and 37 deletions

View file

@ -22,7 +22,7 @@ public:
inline QString getCardUpdaterBinaryName()
{
return "oracle";
};
}
QByteArray getHash(const QString fileName);
QByteArray getHash(QByteArray data);
static bool deleteSpoilerFile();

View file

@ -99,15 +99,15 @@ public:
void setSequence(const QList &_sequence)
{
QList::operator=(_sequence);
};
}
[[nodiscard]] QString getName() const
{
return QApplication::translate("shortcutsTab", name.toUtf8().data());
};
}
[[nodiscard]] QString getGroupName() const
{
return ShortcutGroup::getGroupName(group);
};
}
private:
QString name;
@ -129,7 +129,7 @@ public:
[[nodiscard]] QList<QString> getAllShortcutKeys() const
{
return shortCuts.keys();
};
}
void setShortcuts(const QString &name, const QList<QKeySequence> &Sequence);
void setShortcuts(const QString &name, const QKeySequence &Sequence);

View file

@ -15,7 +15,7 @@ public:
[[nodiscard]] bool getIncludeRebalancedCards() const override
{
return SettingsCache::instance().getIncludeRebalancedCards();
};
}
};
#endif // COCKATRICE_SETTINGS_CARD_PREFERENCE_PROVIDER_H

View file

@ -113,7 +113,7 @@ public:
[[nodiscard]] PlayerActions *getPlayerActions() const
{
return playerActions;
};
}
[[nodiscard]] PlayerEventHandler *getPlayerEventHandler() const
{
@ -123,7 +123,7 @@ public:
[[nodiscard]] PlayerInfo *getPlayerInfo() const
{
return playerInfo;
};
}
[[nodiscard]] PlayerMenu *getPlayerMenu() const
{

View file

@ -52,7 +52,7 @@ public:
void rawInsertCard(CardItem *card, int index)
{
cards.insert(index, card);
};
}
[[nodiscard]] const CardList &getCards() const
{

View file

@ -23,15 +23,15 @@ public:
[[nodiscard]] bool isColorActive() const
{
return isActive;
};
}
[[nodiscard]] QString getSymbol() const
{
return symbol;
};
}
[[nodiscard]] QChar getSymbolChar() const
{
return symbol[0];
};
}
void loadManaIcon();

View file

@ -32,7 +32,7 @@ public:
QTreeView *getDatabaseView()
{
return databaseView;
};
}
public slots:
ExactCard currentCard() const;

View file

@ -39,7 +39,7 @@ public:
[[nodiscard]] DeckListModel *getDeckModel() const
{
return deckModel;
};
}
public slots:
void retranslateUi();

View file

@ -167,4 +167,4 @@ const ServerInfo_User *UserListManager::getOnlineUser(const QString &userName) c
}
return nullptr;
};
}

View file

@ -24,7 +24,7 @@ public:
[[nodiscard]] QString getBannerText() const
{
return header->getText();
};
}
private:
QVBoxLayout *layout;

View file

@ -44,7 +44,7 @@ public:
{
state = newState;
update();
};
}
signals:
/**

View file

@ -31,7 +31,7 @@ public:
[[nodiscard]] FlowWidget *getFlowWidget() const
{
return flowWidget;
};
}
public slots:
void updateVisibility(bool recursive = true);

View file

@ -135,7 +135,7 @@ private:
inline QString getCardUpdaterBinaryName()
{
return "oracle";
};
}
void createCardUpdateProcess(bool background = false);
void exitCardDatabaseUpdate();