diff options
author | Tobias Hunger <tobias.hunger@qt.io> | 2018-05-07 17:36:22 +0200 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@qt.io> | 2018-05-09 12:15:01 +0000 |
commit | b554c761fb5bcf8c2882a7cf5d59a973c1ca86ce (patch) | |
tree | b15af0cb77052b90fd64639341c8db3d36b0d017 /src/plugins/cpptools/cppcodestylepreferences.h | |
parent | fb71cac07bb6a45d4592da3a92dab7f41a6623f6 (diff) | |
download | qt-creator-b554c761fb5bcf8c2882a7cf5d59a973c1ca86ce.tar.gz |
CppTools: Consistently use nullptr
Fixed by clang-tidy modernize-use-nullptr.
Change-Id: I951627ba3543faa357f67ee76527518290efe3f1
Reviewed-by: Ivan Donchevskii <ivan.donchevskii@qt.io>
Diffstat (limited to 'src/plugins/cpptools/cppcodestylepreferences.h')
-rw-r--r-- | src/plugins/cpptools/cppcodestylepreferences.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cpptools/cppcodestylepreferences.h b/src/plugins/cpptools/cppcodestylepreferences.h index 1b225c0b71..5e1f9ac28a 100644 --- a/src/plugins/cpptools/cppcodestylepreferences.h +++ b/src/plugins/cpptools/cppcodestylepreferences.h @@ -37,7 +37,7 @@ class CPPTOOLS_EXPORT CppCodeStylePreferences : public TextEditor::ICodeStylePre Q_OBJECT public: explicit CppCodeStylePreferences( - QObject *parent = 0); + QObject *parent = nullptr); QVariant value() const override; void setValue(const QVariant &) override; |