diff options
author | Lioncash <mathew1800@gmail.com> | 2016-12-11 03:28:50 +0100 |
---|---|---|
committer | linkmauve <linkmauve@linkmauve.fr> | 2016-12-11 12:45:50 +0100 |
commit | 7402001787773d81b02b1cd2ea2925f5397f5d02 (patch) | |
tree | 56ac7e58947bc2fd59cfd19377df5a9a3f96a481 | |
parent | game_list: Make the AddEntry argument a const reference (diff) | |
download | yuzu-7402001787773d81b02b1cd2ea2925f5397f5d02.tar yuzu-7402001787773d81b02b1cd2ea2925f5397f5d02.tar.gz yuzu-7402001787773d81b02b1cd2ea2925f5397f5d02.tar.bz2 yuzu-7402001787773d81b02b1cd2ea2925f5397f5d02.tar.lz yuzu-7402001787773d81b02b1cd2ea2925f5397f5d02.tar.xz yuzu-7402001787773d81b02b1cd2ea2925f5397f5d02.tar.zst yuzu-7402001787773d81b02b1cd2ea2925f5397f5d02.zip |
-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: COLUMN_COUNT, // Number of columns }; - GameList(QWidget* parent = nullptr); + explicit GameList(QWidget* parent = nullptr); ~GameList() override; void PopulateAsync(const QString& dir_path, bool deep_scan); |