summaryrefslogtreecommitdiffstats
path: root/consistencycheck.h
diff options
context:
space:
mode:
authorArno <arno@disconnect.de>2018-11-23 18:11:10 +0100
committerArno <arno@disconnect.de>2018-11-23 18:11:10 +0100
commit92ada0efad9f0b0a3263e4245cfd1441f4b9f7a9 (patch)
tree2ef9701ab860ad15a733ebebcd8491a1ef00650c /consistencycheck.h
parent544e9c51ef1c6bea68e1a0fb12144481cc920db5 (diff)
downloadSheMov-92ada0efad9f0b0a3263e4245cfd1441f4b9f7a9.tar.gz
SheMov-92ada0efad9f0b0a3263e4245cfd1441f4b9f7a9.tar.bz2
SheMov-92ada0efad9f0b0a3263e4245cfd1441f4b9f7a9.zip
Clang fixes, nullptr and WindowFlags...
Diffstat (limited to 'consistencycheck.h')
-rw-r--r--consistencycheck.h4
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; }