summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/render/meshfunctors/tst_meshfunctors.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/auto/render/meshfunctors/tst_meshfunctors.cpp b/tests/auto/render/meshfunctors/tst_meshfunctors.cpp
index fc22b17f7..bf8d9f2af 100644
--- a/tests/auto/render/meshfunctors/tst_meshfunctors.cpp
+++ b/tests/auto/render/meshfunctors/tst_meshfunctors.cpp
@@ -47,7 +47,7 @@ public:
return nullptr;
}
- bool operator ==(const Qt3DCore::QGeometryFactory &other) const override
+ bool equals(const Qt3DCore::QGeometryFactory &other) const override
{
return Qt3DCore::functor_cast<MeshFunctorA>(&other);
}
@@ -69,7 +69,7 @@ public:
return nullptr;
}
- bool operator ==(const Qt3DCore::QGeometryFactory &other) const override
+ bool equals(const Qt3DCore::QGeometryFactory &other) const override
{
return Qt3DCore::functor_cast<MeshFunctorB>(&other);
}
@@ -86,7 +86,7 @@ public:
~MeshFunctorASub()
{}
- bool operator ==(const Qt3DCore::QGeometryFactory &other) const override
+ bool equals(const Qt3DCore::QGeometryFactory &other) const override
{
return Qt3DCore::functor_cast<MeshFunctorASub>(&other);
}