diff options
Diffstat (limited to 'consistencycheck.h')
-rw-r--r-- | consistencycheck.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/consistencycheck.h b/consistencycheck.h index 49b9a8e..2f934fc 100644 --- a/consistencycheck.h +++ b/consistencycheck.h @@ -29,7 +29,9 @@ class ConsistencyCheck : public QDialog { private slots: void startChecker(int checkerType); void addMessage(const QString &message); - void cancelExit(); + void checkerStarted(); + void checkerFinished(); + void cancelChecker(); void showErrorsChanged(int state); private: @@ -55,7 +57,10 @@ class ConsistencyChecker : public QThread { void check(); public slots: - void cancel(bool cancel); + void setCancel(bool cancel); + + private slots: + void dbCheck(); signals: void consistencyMsg(const QString &msg); @@ -64,7 +69,6 @@ class ConsistencyChecker : public QThread { void run(); private: - void dbCheck(); QString archivePath(const QString &fileName, const QString &md5sum) const; bool mCanceled; int mMode; |