summaryrefslogtreecommitdiffstats
path: root/filter
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-01-19 15:17:30 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-01-20 08:13:51 +0000
commit4ff5a5558472beee85eb1234dcc2aa2ed9000f6c (patch)
treeb2a0a83933064b7a22db0e27c0a3d8b7339053de /filter
parentexternal/firebird: Adapt to GCC 6 (diff)
downloadcore-4ff5a5558472beee85eb1234dcc2aa2ed9000f6c.tar.gz
core-4ff5a5558472beee85eb1234dcc2aa2ed9000f6c.zip
loplugin:unusedmethods
Change-Id: Ib2dc804f55d1a96ae01f2cf31b7d55956040a72e Reviewed-on: https://gerrit.libreoffice.org/21603 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'filter')
-rw-r--r--filter/source/svg/b2dellipse.cxx5
-rw-r--r--filter/source/svg/b2dellipse.hxx3
2 files changed, 0 insertions, 8 deletions
diff --git a/filter/source/svg/b2dellipse.cxx b/filter/source/svg/b2dellipse.cxx
index 4e4e1f04fa91..b4761090c446 100644
--- a/filter/source/svg/b2dellipse.cxx
+++ b/filter/source/svg/b2dellipse.cxx
@@ -22,11 +22,6 @@ namespace basegfx
{
}
- bool B2DEllipse::operator==(const B2DEllipse& rEllipse) const
- {
- return (maCenter == rEllipse.maCenter) && (maRadius == rEllipse.maRadius);
- }
-
} // end of namespace basegfx
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/filter/source/svg/b2dellipse.hxx b/filter/source/svg/b2dellipse.hxx
index 45ad6f99ee59..b37a5c390704 100644
--- a/filter/source/svg/b2dellipse.hxx
+++ b/filter/source/svg/b2dellipse.hxx
@@ -40,9 +40,6 @@ namespace basegfx
// assignment operator
B2DEllipse& operator=(const B2DEllipse& rEllipse);
- // compare operators
- bool operator==(const B2DEllipse& rEllipse) const;
-
// Coordinate interface
basegfx::B2DPoint getB2DEllipseCenter() const { return maCenter; }
basegfx::B2DTuple getB2DEllipseRadius() const { return maRadius; }