diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-04-01 23:11:19 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-04-02 07:34:46 -0700 |
commit | 30230dce1027a6a0d0bad5e09581e6130cc78a62 (patch) | |
tree | a6549df68f71e55f9a91505b1a0c053e306e63db /profile-widget | |
parent | 30746e5d3f6b20a0603359f55f232fb082362f39 (diff) | |
download | subsurface-30230dce1027a6a0d0bad5e09581e6130cc78a62.tar.gz |
Cleanup: remove all Q_NULLPTR instances
It expands to nullptr anyway and is inconsitent with the rest of the
code. Let's remove this anachronism.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'profile-widget')
-rw-r--r-- | profile-widget/tankitem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/profile-widget/tankitem.cpp b/profile-widget/tankitem.cpp index 2bbcdc1a7..ff05ec1d0 100644 --- a/profile-widget/tankitem.cpp +++ b/profile-widget/tankitem.cpp @@ -31,7 +31,7 @@ TankItem::TankItem(QObject *parent) : trimixGradient.setColorAt(1.0, red); trimix = trimixGradient; air = blue; - hAxis = Q_NULLPTR; + hAxis = nullptr; memset(&diveCylinderStore, 0, sizeof(diveCylinderStore)); } |