summaryrefslogtreecommitdiff
path: root/include/drawinglayer
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-11-09 10:26:36 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-11-09 10:34:31 +0000
commit30e39e4793bbfe59a53b41422b5d86a03cfe31d3 (patch)
tree989d282b0ef9b180e56a69a946d69aba17c92ead /include/drawinglayer
parent0e0e3ea312dc09de6726318c3579671fec7de7ee (diff)
loplugin:expandablemethods in drawinglayer..editeng
Change-Id: Ic7fe13651e18b4eec90ef3fd8d7aab81197e0f39 Reviewed-on: https://gerrit.libreoffice.org/30707 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/drawinglayer')
-rw-r--r--include/drawinglayer/attribute/sdrfillgraphicattribute.hxx1
-rw-r--r--include/drawinglayer/primitive2d/borderlineprimitive2d.hxx5
-rw-r--r--include/drawinglayer/primitive2d/primitivetools2d.hxx7
-rw-r--r--include/drawinglayer/primitive2d/textdecoratedprimitive2d.hxx4
4 files changed, 0 insertions, 17 deletions
diff --git a/include/drawinglayer/attribute/sdrfillgraphicattribute.hxx b/include/drawinglayer/attribute/sdrfillgraphicattribute.hxx
index 2531fb096c59..60e76d87af8c 100644
--- a/include/drawinglayer/attribute/sdrfillgraphicattribute.hxx
+++ b/include/drawinglayer/attribute/sdrfillgraphicattribute.hxx
@@ -83,7 +83,6 @@ namespace drawinglayer
const basegfx::B2DVector& getOffsetPosition() const;
const basegfx::B2DVector& getRectPoint() const;
bool getTiling() const;
- bool getStretch() const;
// FillGraphicAttribute generator
FillGraphicAttribute createFillGraphicAttribute(const basegfx::B2DRange& rRange) const;
diff --git a/include/drawinglayer/primitive2d/borderlineprimitive2d.hxx b/include/drawinglayer/primitive2d/borderlineprimitive2d.hxx
index 80d3890fe945..bd10add60aa9 100644
--- a/include/drawinglayer/primitive2d/borderlineprimitive2d.hxx
+++ b/include/drawinglayer/primitive2d/borderlineprimitive2d.hxx
@@ -74,11 +74,6 @@ namespace drawinglayer
double getWidth(
const geometry::ViewInformation2D& rViewInformation) const;
- bool isSolidLine() const
- {
- return mnStyle == css::table::BorderLineStyle::SOLID;
- }
-
bool isInsideUsed() const
{
return !basegfx::fTools::equalZero(mfLeftWidth);
diff --git a/include/drawinglayer/primitive2d/primitivetools2d.hxx b/include/drawinglayer/primitive2d/primitivetools2d.hxx
index cd0bacea114b..289fc77de018 100644
--- a/include/drawinglayer/primitive2d/primitivetools2d.hxx
+++ b/include/drawinglayer/primitive2d/primitivetools2d.hxx
@@ -46,13 +46,6 @@ namespace drawinglayer
*/
double mfDiscreteUnit;
- protected:
- /// helper to update discrete unit
- void updateDiscreteUnit(double fNew)
- {
- mfDiscreteUnit = fNew;
- }
-
public:
/// constructor
DiscreteMetricDependentPrimitive2D()
diff --git a/include/drawinglayer/primitive2d/textdecoratedprimitive2d.hxx b/include/drawinglayer/primitive2d/textdecoratedprimitive2d.hxx
index c1b0a57277a0..14fd82ebf000 100644
--- a/include/drawinglayer/primitive2d/textdecoratedprimitive2d.hxx
+++ b/include/drawinglayer/primitive2d/textdecoratedprimitive2d.hxx
@@ -118,10 +118,6 @@ namespace drawinglayer
bool getEmphasisMarkBelow() const { return mbEmphasisMarkBelow; }
bool getShadow() const { return mbShadow; }
- /// check if this needs to be a TextDecoratedPortionPrimitive2D or
- /// if a TextSimplePortionPrimitive2D would be suficcient
- bool decoratedIsNeeded() const;
-
/// compare operator
virtual bool operator==( const BasePrimitive2D& rPrimitive ) const override;