We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 359dc84 commit 5093754Copy full SHA for 5093754
fusioncli.cpp
@@ -87,7 +87,7 @@ void FusionCLI::getAllGames() {
87
qDebug() << "Found " << gameList.length() << " games.";
88
89
for(int i=0;i<gameList.length();++i) {
90
- games.append(getGame(&gameList[i]));
+ games.append(getGame(gameList[i]));
91
}
92
93
fusioncli.h
@@ -30,7 +30,7 @@ public slots:
30
void print(QList<QVariant> list, QString title);
31
void print(QVariant list);
32
QTextStream *q;
33
- QList<FGame> gameList;
+ QList<FGame*> gameList;
34
void getGameByID(QString ID);
35
};
36
0 commit comments