Просмотр исходного кода

Merge pull request #684 from lioncash/nonmember

game_list: Make ContainsAllWords an internally linked non-member function
bunnei 8 лет назад
Родитель
Сommit
2975f7820e
2 измененных файлов с 1 добавлено и 2 удалено
  1. 1 1
      src/yuzu/game_list.cpp
  2. 0 1
      src/yuzu/game_list.h

+ 1 - 1
src/yuzu/game_list.cpp

@@ -139,7 +139,7 @@ GameList::SearchField::SearchField(GameList* parent) : QWidget{parent} {
  * @param userinput String containing all words getting checked
  * @return true if the haystack contains all words of userinput
  */
-bool GameList::ContainsAllWords(const QString& haystack, const QString& userinput) const {
+static bool ContainsAllWords(const QString& haystack, const QString& userinput) {
     const QStringList userinput_split =
         userinput.split(' ', QString::SplitBehavior::SkipEmptyParts);
 

+ 0 - 1
src/yuzu/game_list.h

@@ -89,7 +89,6 @@ private:
 
     void PopupContextMenu(const QPoint& menu_location);
     void RefreshGameDirectory();
-    bool ContainsAllWords(const QString& haystack, const QString& userinput) const;
 
     SearchField* search_field;
     GMainWindow* main_window = nullptr;