summaryrefslogtreecommitdiffstats
path: root/src/citra_qt/game_list_p.h
diff options
context:
space:
mode:
authorJames Rowe <jroweboy@gmail.com>2017-04-18 04:53:40 +0200
committerJames Rowe <jroweboy@gmail.com>2017-05-10 17:37:44 +0200
commitfc2f7b0df6b2429d45b169b51ce8d5c71ef68a4b (patch)
tree6989ddbc667f619badd214955741a0967dd97a8f /src/citra_qt/game_list_p.h
parentMerge pull request #2689 from yuriks/remove-disassembler (diff)
downloadyuzu-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_p.h8
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;