summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-06 19:48:14 +0200
committerLioncash <mathew1800@gmail.com>2018-08-06 20:35:40 +0200
commit251e92513a74e2dc47f5e2fd97bfc793f9f09094 (patch)
tree971ddba155c2e4ff3b35982c0383456cb7b02324 /src
parentMerge pull request #933 from lioncash/memory (diff)
downloadyuzu-251e92513a74e2dc47f5e2fd97bfc793f9f09094.tar
yuzu-251e92513a74e2dc47f5e2fd97bfc793f9f09094.tar.gz
yuzu-251e92513a74e2dc47f5e2fd97bfc793f9f09094.tar.bz2
yuzu-251e92513a74e2dc47f5e2fd97bfc793f9f09094.tar.lz
yuzu-251e92513a74e2dc47f5e2fd97bfc793f9f09094.tar.xz
yuzu-251e92513a74e2dc47f5e2fd97bfc793f9f09094.tar.zst
yuzu-251e92513a74e2dc47f5e2fd97bfc793f9f09094.zip
Diffstat (limited to '')
-rw-r--r--src/yuzu/game_list.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/yuzu/game_list.cpp b/src/yuzu/game_list.cpp
index 71e24a9e2..a0e16641d 100644
--- a/src/yuzu/game_list.cpp
+++ b/src/yuzu/game_list.cpp
@@ -162,15 +162,15 @@ void GameList::onTextChanged(const QString& newText) {
}
search_field->setFilterResult(rowCount, rowCount);
} else {
- QStandardItem* child_file;
- QString file_path, file_name, file_title, file_programmid;
int result_count = 0;
for (int i = 0; i < rowCount; ++i) {
- child_file = item_model->item(i, 0);
- file_path = child_file->data(GameListItemPath::FullPathRole).toString().toLower();
- file_name = file_path.mid(file_path.lastIndexOf("/") + 1);
- file_title = child_file->data(GameListItemPath::TitleRole).toString().toLower();
- file_programmid =
+ const QStandardItem* child_file = item_model->item(i, 0);
+ const QString file_path =
+ child_file->data(GameListItemPath::FullPathRole).toString().toLower();
+ QString file_name = file_path.mid(file_path.lastIndexOf('/') + 1);
+ const QString file_title =
+ child_file->data(GameListItemPath::TitleRole).toString().toLower();
+ const QString file_programmid =
child_file->data(GameListItemPath::ProgramIdRole).toString().toLower();
// Only items which filename in combination with its title contains all words