summaryrefslogtreecommitdiff
path: root/include/drawinglayer
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-04-28 14:12:48 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-05-02 08:18:57 +0200
commitdb4802de3474af2475890c9483a3b65d3b553b2b (patch)
tree38fada9eeab9504e837a09d53dea81335491b7d9 /include/drawinglayer
parenta12dfa353122d1865b7c20513865a4632a621a38 (diff)
loplugin:checkunusedparams in drawinglayer
Change-Id: Ib497b284a80fae69930f226d2e70368cb9e962ef Reviewed-on: https://gerrit.libreoffice.org/37072 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/primitive2d/controlprimitive2d.hxx2
-rw-r--r--include/drawinglayer/primitive2d/embedded3dprimitive2d.hxx2
-rw-r--r--include/drawinglayer/primitive2d/sceneprimitive2d.hxx4
-rw-r--r--include/drawinglayer/texture/texture.hxx1
4 files changed, 4 insertions, 5 deletions
diff --git a/include/drawinglayer/primitive2d/controlprimitive2d.hxx b/include/drawinglayer/primitive2d/controlprimitive2d.hxx
index 71341298fd8e..9bd3783e07a9 100644
--- a/include/drawinglayer/primitive2d/controlprimitive2d.hxx
+++ b/include/drawinglayer/primitive2d/controlprimitive2d.hxx
@@ -59,7 +59,7 @@ namespace drawinglayer
/// single local decompositions, used from create2DDecomposition()
Primitive2DReference createBitmapDecomposition(const geometry::ViewInformation2D& rViewInformation) const;
- Primitive2DReference createPlaceholderDecomposition(const geometry::ViewInformation2D& rViewInformation) const;
+ Primitive2DReference createPlaceholderDecomposition() const;
protected:
/// local decomposition
diff --git a/include/drawinglayer/primitive2d/embedded3dprimitive2d.hxx b/include/drawinglayer/primitive2d/embedded3dprimitive2d.hxx
index 42fecfd3421d..6a91960858eb 100644
--- a/include/drawinglayer/primitive2d/embedded3dprimitive2d.hxx
+++ b/include/drawinglayer/primitive2d/embedded3dprimitive2d.hxx
@@ -78,7 +78,7 @@ namespace drawinglayer
bool mbShadow3DChecked : 1;
/// private helpers
- bool impGetShadow3D(const geometry::ViewInformation2D& rViewInformation) const;
+ bool impGetShadow3D() const;
protected:
/// local decomposition.
diff --git a/include/drawinglayer/primitive2d/sceneprimitive2d.hxx b/include/drawinglayer/primitive2d/sceneprimitive2d.hxx
index 141bd68d55d6..8adafda0e137 100644
--- a/include/drawinglayer/primitive2d/sceneprimitive2d.hxx
+++ b/include/drawinglayer/primitive2d/sceneprimitive2d.hxx
@@ -89,7 +89,7 @@ namespace drawinglayer
BitmapEx maOldRenderedBitmap;
/// private helpers
- bool impGetShadow3D(const geometry::ViewInformation2D& rViewInformation) const;
+ bool impGetShadow3D() const;
void calculateDiscreteSizes(
const geometry::ViewInformation2D& rViewInformation,
basegfx::B2DRange& rDiscreteRange,
@@ -107,7 +107,7 @@ namespace drawinglayer
helper is useful e.g. for Contour extraction or HitTests.
*/
Primitive2DContainer getGeometry2D() const;
- Primitive2DContainer getShadow2D(const geometry::ViewInformation2D& rViewInformation) const;
+ Primitive2DContainer getShadow2D() const;
/** Fast HitTest which uses the last buffered BitmapEx from the last
rendered area if available. The return value describes if the check
diff --git a/include/drawinglayer/texture/texture.hxx b/include/drawinglayer/texture/texture.hxx
index 95bd5daf5d8e..105a9240b9a9 100644
--- a/include/drawinglayer/texture/texture.hxx
+++ b/include/drawinglayer/texture/texture.hxx
@@ -84,7 +84,6 @@ namespace drawinglayer
const basegfx::B2DRange& rDefinitionRange,
const basegfx::BColor& rStart,
const basegfx::BColor& rEnd,
- sal_uInt32 nSteps,
double fBorder);
virtual ~GeoTexSvxGradient() override;