summaryrefslogtreecommitdiffstats
path: root/src/extras/geometries/qplanegeometry.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/extras/geometries/qplanegeometry.cpp')
-rw-r--r--src/extras/geometries/qplanegeometry.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/extras/geometries/qplanegeometry.cpp b/src/extras/geometries/qplanegeometry.cpp
index 99892fa24..225726342 100644
--- a/src/extras/geometries/qplanegeometry.cpp
+++ b/src/extras/geometries/qplanegeometry.cpp
@@ -158,12 +158,12 @@ public:
~PlaneVertexBufferFunctor() {}
- QByteArray operator()() Q_DECL_FINAL
+ QByteArray operator()() final
{
return createPlaneVertexData(m_width, m_height, m_resolution, m_mirrored);
}
- bool operator ==(const QBufferDataGenerator &other) const Q_DECL_FINAL
+ bool operator ==(const QBufferDataGenerator &other) const final
{
const PlaneVertexBufferFunctor *otherFunctor = functor_cast<PlaneVertexBufferFunctor>(&other);
if (otherFunctor != nullptr)
@@ -192,12 +192,12 @@ public:
~PlaneIndexBufferFunctor() {}
- QByteArray operator()() Q_DECL_FINAL
+ QByteArray operator()() final
{
return createPlaneIndexData(m_resolution);
}
- bool operator ==(const QBufferDataGenerator &other) const Q_DECL_FINAL
+ bool operator ==(const QBufferDataGenerator &other) const final
{
const PlaneIndexBufferFunctor *otherFunctor = functor_cast<PlaneIndexBufferFunctor>(&other);
if (otherFunctor != nullptr)