diff options
author | James Rowe <jroweboy@gmail.com> | 2017-04-18 04:53:40 +0200 |
---|---|---|
committer | James Rowe <jroweboy@gmail.com> | 2017-05-10 17:37:44 +0200 |
commit | fc2f7b0df6b2429d45b169b51ce8d5c71ef68a4b (patch) | |
tree | 6989ddbc667f619badd214955741a0967dd97a8f /src/citra_qt/game_list.h | |
parent | Merge pull request #2689 from yuriks/remove-disassembler (diff) | |
download | yuzu-fc2f7b0df6b2429d45b169b51ce8d5c71ef68a4b.tar yuzu-fc2f7b0df6b2429d45b169b51ce8d5c71ef68a4b.tar.gz yuzu-fc2f7b0df6b2429d45b169b51ce8d5c71ef68a4b.tar.bz2 yuzu-fc2f7b0df6b2429d45b169b51ce8d5c71ef68a4b.tar.lz yuzu-fc2f7b0df6b2429d45b169b51ce8d5c71ef68a4b.tar.xz yuzu-fc2f7b0df6b2429d45b169b51ce8d5c71ef68a4b.tar.zst yuzu-fc2f7b0df6b2429d45b169b51ce8d5c71ef68a4b.zip |
Diffstat (limited to '')
-rw-r--r-- | src/citra_qt/game_list.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/citra_qt/game_list.h b/src/citra_qt/game_list.h index d8f8bc5b6..4823a1296 100644 --- a/src/citra_qt/game_list.h +++ b/src/citra_qt/game_list.h @@ -85,10 +85,9 @@ private slots: private: void AddEntry(const QList<QStandardItem*>& entry_items); void ValidateEntry(const QModelIndex& item); - void DonePopulating(); + void DonePopulating(QStringList watch_list); void PopupContextMenu(const QPoint& menu_location); - void UpdateWatcherList(const std::string& path, unsigned int recursion); void RefreshGameDirectory(); bool containsAllWords(QString haystack, QString userinput); @@ -98,5 +97,5 @@ private: QTreeView* tree_view = nullptr; QStandardItemModel* item_model = nullptr; GameListWorker* current_worker = nullptr; - QFileSystemWatcher watcher; + QFileSystemWatcher* watcher = nullptr; }; |