summaryrefslogtreecommitdiff
path: root/src/mainwindow.h
diff options
context:
space:
mode:
authorAL <26797547+Al12rs@users.noreply.github.com>2020-06-07 17:44:06 +0200
committerAL <26797547+Al12rs@users.noreply.github.com>2020-06-07 17:44:06 +0200
commitd1c42e69c1819def3098bfac0fd96f2eb39226e9 (patch)
tree028dea7baf8d3e7f4e4012b4454ce5a1fc4f20c9 /src/mainwindow.h
parent0dc66e7ff4e4561d7b7f9ffbc3158a0e1bf5a2ec (diff)
Make even the last direct call to checkForProblemsImpl use the async version.
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r--src/mainwindow.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h
index ac172474..14987c0d 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -248,7 +248,7 @@ private:
bool extractProgress(QProgressDialog &extractProgress, int percentage, std::string fileName);
// Performs checks, sets the m_NumberOfProblems and signals checkForProblemsDone().
- void checkForProblems();
+ void checkForProblemsImpl();
void setCategoryListVisible(bool visible);
@@ -535,7 +535,7 @@ private slots:
void scheduleCheckForProblems();
// Perform the actual problem check in another thread.
- void checkForProblemsAsync();
+ QFuture<void> checkForProblemsAsync();
void saveModMetas();