summaryrefslogtreecommitdiff
path: root/src/yuzu/game_list.h
diff options
context:
space:
mode:
authorfearlessTobi <thm.frey@gmail.com>2019-06-08 00:51:58 +0200
committerFearlessTobi <thm.frey@gmail.com>2019-09-04 16:47:33 +0200
commit13891fd62dc67292c9157f52b5a1bad1541f120e (patch)
treebdfdc657a3a56eb1e1102521855afa79c574b843 /src/yuzu/game_list.h
parent5aaafa6a56101a18759264bbf1ef9293d424f899 (diff)
Change QList to QVector
Diffstat (limited to 'src/yuzu/game_list.h')
-rw-r--r--src/yuzu/game_list.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/yuzu/game_list.h b/src/yuzu/game_list.h
index 7ed77fd9c..e781afb16 100644
--- a/src/yuzu/game_list.h
+++ b/src/yuzu/game_list.h
@@ -17,6 +17,7 @@
#include <QToolButton>
#include <QTreeView>
#include <QVBoxLayout>
+#include <QVector>
#include <QWidget>
#include "common/common_types.h"
@@ -62,7 +63,7 @@ public:
bool isEmpty() const;
void LoadCompatibilityList();
- void PopulateAsync(QList<UISettings::GameDir>& game_dirs);
+ void PopulateAsync(QVector<UISettings::GameDir>& game_dirs);
void SaveInterfaceLayout();
void LoadInterfaceLayout();