Fix Linter

This commit is contained in:
ZeldaZach 2024-12-27 18:35:52 -05:00
parent 3524231500
commit 57ed162b79
No known key found for this signature in database

View file

@ -27,7 +27,7 @@ private:
Node(const QString &_name) : name(_name)
{
}
virtual ~Node() {};
virtual ~Node(){};
QString getName() const
{
return name;
@ -115,7 +115,8 @@ public:
ServerInfo_ReplayMatch const *getReplayMatch(const QModelIndex &ind) const;
QList<ServerInfo_Replay const *> getSelectedReplays() const;
QSet<ServerInfo_ReplayMatch const *> getSelectedReplayMatches() const;
void refreshTree() {
void refreshTree()
{
treeModel->refreshTree();
}
void addMatchInfo(const ServerInfo_ReplayMatch &matchInfo)