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_p.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 'src/citra_qt/game_list_p.h')
-rw-r--r-- | src/citra_qt/game_list_p.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/citra_qt/game_list_p.h b/src/citra_qt/game_list_p.h index 3c11b6dd1..d1118ff7f 100644 --- a/src/citra_qt/game_list_p.h +++ b/src/citra_qt/game_list_p.h @@ -170,9 +170,15 @@ signals: * @param entry_items a list with `QStandardItem`s that make up the columns of the new entry. */ void EntryReady(QList<QStandardItem*> entry_items); - void Finished(); + + /** + * After the worker has traversed the game directory looking for entries, this signal is emmited + * with a list of folders that should be watched for changes as well. + */ + void Finished(QStringList watch_list); private: + QStringList watch_list; QString dir_path; bool deep_scan; std::atomic_bool stop_processing; |