diff options
Diffstat (limited to 'consistencycheck.h')
-rw-r--r-- | consistencycheck.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/consistencycheck.h b/consistencycheck.h index 7f445eb..5c8dfb5 100644 --- a/consistencycheck.h +++ b/consistencycheck.h @@ -29,7 +29,7 @@ class ConsistencyCheck : public SmDialog { Q_OBJECT public: enum Mode { DbCheck, FsCheck }; - explicit ConsistencyCheck(QWidget *parent = 0, Qt::WindowFlags f = 0); + explicit ConsistencyCheck(QWidget *parent = nullptr, Qt::WindowFlags f = Qt::Widget); ~ConsistencyCheck(); public slots: @@ -61,7 +61,7 @@ class ConsistencyChecker : public QThread { Q_OBJECT public: enum Status { Ok, Fail }; - explicit ConsistencyChecker(QObject *parent = 0); + explicit ConsistencyChecker(QObject *parent = nullptr); ~ConsistencyChecker(); int mode() const { return mMode; } int count() const { return mCurCount; } |