mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-29 01:53:54 -07:00
Fix Linter
This commit is contained in:
parent
3524231500
commit
57ed162b79
1 changed files with 3 additions and 2 deletions
|
|
@ -27,7 +27,7 @@ private:
|
||||||
Node(const QString &_name) : name(_name)
|
Node(const QString &_name) : name(_name)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
virtual ~Node() {};
|
virtual ~Node(){};
|
||||||
QString getName() const
|
QString getName() const
|
||||||
{
|
{
|
||||||
return name;
|
return name;
|
||||||
|
|
@ -115,7 +115,8 @@ public:
|
||||||
ServerInfo_ReplayMatch const *getReplayMatch(const QModelIndex &ind) const;
|
ServerInfo_ReplayMatch const *getReplayMatch(const QModelIndex &ind) const;
|
||||||
QList<ServerInfo_Replay const *> getSelectedReplays() const;
|
QList<ServerInfo_Replay const *> getSelectedReplays() const;
|
||||||
QSet<ServerInfo_ReplayMatch const *> getSelectedReplayMatches() const;
|
QSet<ServerInfo_ReplayMatch const *> getSelectedReplayMatches() const;
|
||||||
void refreshTree() {
|
void refreshTree()
|
||||||
|
{
|
||||||
treeModel->refreshTree();
|
treeModel->refreshTree();
|
||||||
}
|
}
|
||||||
void addMatchInfo(const ServerInfo_ReplayMatch &matchInfo)
|
void addMatchInfo(const ServerInfo_ReplayMatch &matchInfo)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue