summaryrefslogtreecommitdiffstats
path: root/src/extras/geometries/qcylindergeometry.cpp
diff options
context:
space:
mode:
authorSean Harmer <sean.harmer@kdab.com>2016-04-29 19:35:20 +0100
committerSean Harmer <sean.harmer@kdab.com>2016-05-01 15:43:11 +0000
commita01b14670e5b35a951ec57297613418dc829d65c (patch)
treed9bdcc4ca7b325ff5a1c2e68b801efe9e4d667b8 /src/extras/geometries/qcylindergeometry.cpp
parentf9dc7c72090b9a11a3daf9e2c912213fbeec5739 (diff)
Q_NULLPTR -> nullptr
Task-number: QTBUG-52736 Change-Id: I58f9cbcdf018e7b672d33dd865067485412b79fe Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Diffstat (limited to 'src/extras/geometries/qcylindergeometry.cpp')
-rw-r--r--src/extras/geometries/qcylindergeometry.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/extras/geometries/qcylindergeometry.cpp b/src/extras/geometries/qcylindergeometry.cpp
index f42cb0a46..de9d25f9b 100644
--- a/src/extras/geometries/qcylindergeometry.cpp
+++ b/src/extras/geometries/qcylindergeometry.cpp
@@ -198,7 +198,7 @@ public:
bool operator ==(const QBufferDataGenerator &other) const Q_DECL_OVERRIDE
{
const CylinderVertexDataFunctor *otherFunctor = functor_cast<CylinderVertexDataFunctor>(&other);
- if (otherFunctor != Q_NULLPTR)
+ if (otherFunctor != nullptr)
return (otherFunctor->m_rings == m_rings &&
otherFunctor->m_slices == m_slices &&
otherFunctor->m_radius == m_radius &&
@@ -247,7 +247,7 @@ public:
bool operator ==(const QBufferDataGenerator &other) const Q_DECL_OVERRIDE
{
const CylinderIndexDataFunctor *otherFunctor = functor_cast<CylinderIndexDataFunctor>(&other);
- if (otherFunctor != Q_NULLPTR)
+ if (otherFunctor != nullptr)
return (otherFunctor->m_rings == m_rings &&
otherFunctor->m_slices == m_slices &&
otherFunctor->m_length == m_length);
@@ -269,12 +269,12 @@ QCylinderGeometryPrivate::QCylinderGeometryPrivate()
, m_slices(16)
, m_radius(1.0f)
, m_length(1.0f)
- , m_positionAttribute(Q_NULLPTR)
- , m_normalAttribute(Q_NULLPTR)
- , m_texCoordAttribute(Q_NULLPTR)
- , m_indexAttribute(Q_NULLPTR)
- , m_vertexBuffer(Q_NULLPTR)
- , m_indexBuffer(Q_NULLPTR)
+ , m_positionAttribute(nullptr)
+ , m_normalAttribute(nullptr)
+ , m_texCoordAttribute(nullptr)
+ , m_indexAttribute(nullptr)
+ , m_vertexBuffer(nullptr)
+ , m_indexBuffer(nullptr)
{
}