diff options
author | Noel Grandin <noel@peralex.com> | 2015-07-16 11:24:25 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-16 12:18:56 +0000 |
commit | 051e660b37549fec7cc42e4471ae65a4cefed495 (patch) | |
tree | 720c439d57664224ec579e14a72b5f4ccce391a5 /svx/inc/sdr | |
parent | 1d852b32d7ad89b2317c04958060f366f8922ca4 (diff) |
loplugin:unusedmethods svx(part2)
Change-Id: I161360e2f3113c4814fe1c2c095e602b2c93dcd7
Reviewed-on: https://gerrit.libreoffice.org/17120
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'svx/inc/sdr')
-rw-r--r-- | svx/inc/sdr/primitive2d/sdrcaptionprimitive2d.hxx | 1 | ||||
-rw-r--r-- | svx/inc/sdr/primitive2d/sdrellipseprimitive2d.hxx | 6 | ||||
-rw-r--r-- | svx/inc/sdr/primitive2d/sdrrectangleprimitive2d.hxx | 1 |
3 files changed, 0 insertions, 8 deletions
diff --git a/svx/inc/sdr/primitive2d/sdrcaptionprimitive2d.hxx b/svx/inc/sdr/primitive2d/sdrcaptionprimitive2d.hxx index 2d023b551eae..f3c9c3b13314 100644 --- a/svx/inc/sdr/primitive2d/sdrcaptionprimitive2d.hxx +++ b/svx/inc/sdr/primitive2d/sdrcaptionprimitive2d.hxx @@ -64,7 +64,6 @@ namespace drawinglayer const ::basegfx::B2DPolygon& getTail() const { return maTail; } double getCornerRadiusX() const { return mfCornerRadiusX; } double getCornerRadiusY() const { return mfCornerRadiusY; } - bool isCornerRadiusUsed() const { return (0.0 != mfCornerRadiusX || 0.0 != mfCornerRadiusY); } // provide unique ID DeclPrimitive2DIDBlock() diff --git a/svx/inc/sdr/primitive2d/sdrellipseprimitive2d.hxx b/svx/inc/sdr/primitive2d/sdrellipseprimitive2d.hxx index ce160a28abdb..be6140d2c0cf 100644 --- a/svx/inc/sdr/primitive2d/sdrellipseprimitive2d.hxx +++ b/svx/inc/sdr/primitive2d/sdrellipseprimitive2d.hxx @@ -90,12 +90,6 @@ namespace drawinglayer bool bCloseSegment, bool bCloseUsingCenter); - // data access - double getStartAngle() const { return mfStartAngle; } - double getEndAngle() const { return mfEndAngle; } - bool getCloseSegment() const { return mbCloseSegment; } - bool getCloseUsingCenter() const { return mbCloseUsingCenter; } - // compare operator virtual bool operator==(const BasePrimitive2D& rPrimitive) const SAL_OVERRIDE; diff --git a/svx/inc/sdr/primitive2d/sdrrectangleprimitive2d.hxx b/svx/inc/sdr/primitive2d/sdrrectangleprimitive2d.hxx index 5c57140897bd..729b680c160f 100644 --- a/svx/inc/sdr/primitive2d/sdrrectangleprimitive2d.hxx +++ b/svx/inc/sdr/primitive2d/sdrrectangleprimitive2d.hxx @@ -62,7 +62,6 @@ namespace drawinglayer const attribute::SdrLineFillShadowTextAttribute& getSdrLFSTAttribute() const { return maSdrLFSTAttribute; } double getCornerRadiusX() const { return mfCornerRadiusX; } double getCornerRadiusY() const { return mfCornerRadiusY; } - bool isCornerRadiusUsed() const { return (0.0 != mfCornerRadiusX || 0.0 != mfCornerRadiusY); } bool getForceFillForHitTest() const { return mbForceFillForHitTest; } // compare operator |