diff options
| author | 2016-12-10 21:28:50 -0500 | |
|---|---|---|
| committer | 2016-12-11 11:45:50 +0000 | |
| commit | 7402001787773d81b02b1cd2ea2925f5397f5d02 (patch) | |
| tree | 56ac7e58947bc2fd59cfd19377df5a9a3f96a481 /src | |
| parent | game_list: Make the AddEntry argument a const reference (diff) | |
| download | yuzu-7402001787773d81b02b1cd2ea2925f5397f5d02.tar.gz yuzu-7402001787773d81b02b1cd2ea2925f5397f5d02.tar.xz yuzu-7402001787773d81b02b1cd2ea2925f5397f5d02.zip | |
game_list: Make the constructor explicit
Diffstat (limited to 'src')
| -rw-r--r-- | src/citra_qt/game_list.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra_qt/game_list.h b/src/citra_qt/game_list.h index 8be951395..7b0602842 100644 --- a/src/citra_qt/game_list.h +++ b/src/citra_qt/game_list.h | |||
| @@ -25,7 +25,7 @@ public: | |||
| 25 | COLUMN_COUNT, // Number of columns | 25 | COLUMN_COUNT, // Number of columns |
| 26 | }; | 26 | }; |
| 27 | 27 | ||
| 28 | GameList(QWidget* parent = nullptr); | 28 | explicit GameList(QWidget* parent = nullptr); |
| 29 | ~GameList() override; | 29 | ~GameList() override; |
| 30 | 30 | ||
| 31 | void PopulateAsync(const QString& dir_path, bool deep_scan); | 31 | void PopulateAsync(const QString& dir_path, bool deep_scan); |