summaryrefslogtreecommitdiffstats
path: root/src/render/materialsystem/filterkey.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/render/materialsystem/filterkey.cpp')
-rw-r--r--src/render/materialsystem/filterkey.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/render/materialsystem/filterkey.cpp b/src/render/materialsystem/filterkey.cpp
index 778a9ee75..572d11e57 100644
--- a/src/render/materialsystem/filterkey.cpp
+++ b/src/render/materialsystem/filterkey.cpp
@@ -83,7 +83,7 @@ void FilterKey::syncFromFrontEnd(const QNode *frontEnd, bool firstTime)
}
}
-bool FilterKey::operator ==(const FilterKey &other)
+bool FilterKey::equals(const FilterKey &other) const
{
if (&other == this)
return true;
@@ -101,11 +101,6 @@ bool FilterKey::operator ==(const FilterKey &other)
other.value() == value());
}
-bool FilterKey::operator !=(const FilterKey &other)
-{
- return !operator ==(other);
-}
-
} // namespace Render
} // namespace Qt3DRender