diff options
author | bunnei <bunneidev@gmail.com> | 2018-07-18 10:02:58 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-18 10:02:58 -0700 |
commit | 3d1e8f750cb7ca4f06a04ed4b1dca61d11b94197 (patch) | |
tree | ba934f01c57347df7d8178eb3a55f171ef274011 /src/yuzu/game_list.h | |
parent | e3da9fc3677087a267f489ea69bcdd312dd876fe (diff) | |
parent | f4b98a857b7e4e1b54670d8a86c2937b6030d9cf (diff) |
Merge pull request #681 from lioncash/const
game_list: Make containsAllWords a const member function
Diffstat (limited to 'src/yuzu/game_list.h')
-rw-r--r-- | src/yuzu/game_list.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/game_list.h b/src/yuzu/game_list.h index 7aff597b7..14db3956d 100644 --- a/src/yuzu/game_list.h +++ b/src/yuzu/game_list.h @@ -89,7 +89,7 @@ private: void PopupContextMenu(const QPoint& menu_location); void RefreshGameDirectory(); - bool containsAllWords(QString haystack, QString userinput); + bool ContainsAllWords(const QString& haystack, const QString& userinput) const; SearchField* search_field; GMainWindow* main_window = nullptr; |