Change QList to QVector
This commit is contained in:
parent
5aaafa6a56
commit
13891fd62d
5 changed files with 19 additions and 16 deletions
|
|
@ -11,6 +11,7 @@
|
|||
#include <QMetaType>
|
||||
#include <QString>
|
||||
#include <QStringList>
|
||||
#include <QVector>
|
||||
#include "common/common_types.h"
|
||||
|
||||
namespace UISettings {
|
||||
|
|
@ -70,7 +71,7 @@ struct Values {
|
|||
QString screenshot_path;
|
||||
QString game_dir_deprecated;
|
||||
bool game_dir_deprecated_deepscan;
|
||||
QList<UISettings::GameDir> game_dirs;
|
||||
QVector<UISettings::GameDir> game_dirs;
|
||||
QStringList recent_files;
|
||||
|
||||
QString theme;
|
||||
|
|
|
|||
Reference in a new issue