summaryrefslogtreecommitdiffstats
path: root/tests/auto/render/meshfunctors/tst_meshfunctors.cpp
diff options
context:
space:
mode:
authorKevin Funk <kfunk@kde.org>2017-09-20 20:57:27 +0200
committerSean Harmer <sean.harmer@kdab.com>2017-09-25 10:42:42 +0000
commit43542ef59ac9324106a0690da3b808b23d5ab3a9 (patch)
tree2b632ce1cba8aed2c99c5a88297da8120f5940bb /tests/auto/render/meshfunctors/tst_meshfunctors.cpp
parentc9eac1f67bda96bd8ff5205027bbfb70ad2807d7 (diff)
Replace Q_DECL_OVERRIDE with override
Change-Id: I92c955068e233c50043ad7d06a32300dd386c24d Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'tests/auto/render/meshfunctors/tst_meshfunctors.cpp')
-rw-r--r--tests/auto/render/meshfunctors/tst_meshfunctors.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/auto/render/meshfunctors/tst_meshfunctors.cpp b/tests/auto/render/meshfunctors/tst_meshfunctors.cpp
index bf5f0d55f..c0e871d62 100644
--- a/tests/auto/render/meshfunctors/tst_meshfunctors.cpp
+++ b/tests/auto/render/meshfunctors/tst_meshfunctors.cpp
@@ -39,12 +39,12 @@ public:
~MeshFunctorA()
{}
- Qt3DRender::QGeometry *operator ()() Q_DECL_OVERRIDE
+ Qt3DRender::QGeometry *operator ()() override
{
return nullptr;
}
- bool operator ==(const Qt3DRender::QGeometryFactory &other) const Q_DECL_OVERRIDE
+ bool operator ==(const Qt3DRender::QGeometryFactory &other) const override
{
return Qt3DRender::functor_cast<MeshFunctorA>(&other);
}
@@ -61,12 +61,12 @@ public:
~MeshFunctorB()
{}
- Qt3DRender::QGeometry *operator ()() Q_DECL_OVERRIDE
+ Qt3DRender::QGeometry *operator ()() override
{
return nullptr;
}
- bool operator ==(const Qt3DRender::QGeometryFactory &other) const Q_DECL_OVERRIDE
+ bool operator ==(const Qt3DRender::QGeometryFactory &other) const override
{
return Qt3DRender::functor_cast<MeshFunctorB>(&other);
}
@@ -83,7 +83,7 @@ public:
~MeshFunctorASub()
{}
- bool operator ==(const Qt3DRender::QGeometryFactory &other) const Q_DECL_OVERRIDE
+ bool operator ==(const Qt3DRender::QGeometryFactory &other) const override
{
return Qt3DRender::functor_cast<MeshFunctorASub>(&other);
}