diff options
Diffstat (limited to 'basegfx')
-rw-r--r-- | basegfx/source/polygon/b2dpolygon.cxx | 5 | ||||
-rw-r--r-- | basegfx/source/polygon/b3dpolygon.cxx | 5 |
2 files changed, 0 insertions, 10 deletions
diff --git a/basegfx/source/polygon/b2dpolygon.cxx b/basegfx/source/polygon/b2dpolygon.cxx index ed5954bf0cf7..cf7309d20dd3 100644 --- a/basegfx/source/polygon/b2dpolygon.cxx +++ b/basegfx/source/polygon/b2dpolygon.cxx @@ -1116,11 +1116,6 @@ namespace basegfx return ((*mpPolygon) == (*rPolygon.mpPolygon)); } - bool B2DPolygon::operator!=(const B2DPolygon& rPolygon) const - { - return !(*this == rPolygon); - } - sal_uInt32 B2DPolygon::count() const { return mpPolygon->count(); diff --git a/basegfx/source/polygon/b3dpolygon.cxx b/basegfx/source/polygon/b3dpolygon.cxx index c1ee4b08345a..ebd9e3f4f7ea 100644 --- a/basegfx/source/polygon/b3dpolygon.cxx +++ b/basegfx/source/polygon/b3dpolygon.cxx @@ -1413,11 +1413,6 @@ namespace basegfx return (*mpPolygon == *rPolygon.mpPolygon); } - bool B3DPolygon::operator!=(const B3DPolygon& rPolygon) const - { - return !(*this == rPolygon); - } - sal_uInt32 B3DPolygon::count() const { return mpPolygon->count(); |