diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-05-02 11:37:07 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-05-02 12:53:59 +0200 |
commit | 4cc0b82103e0b1d28a3ada59974aac0e7da18083 (patch) | |
tree | 23dba82b06aaea6a7ea62432fc002f73229fbbde /oox/inc/drawingml | |
parent | 9297aa2c08bdcdf7bf7c132fd908cd8a4cb0fae1 (diff) |
loplugin:checkunusedparams in oox
Change-Id: I95bce82654bd0da7ed76ebd22b107b870ed15a1f
Reviewed-on: https://gerrit.libreoffice.org/37144
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'oox/inc/drawingml')
-rw-r--r-- | oox/inc/drawingml/customshapegeometry.hxx | 2 | ||||
-rw-r--r-- | oox/inc/drawingml/customshapeproperties.hxx | 3 | ||||
-rw-r--r-- | oox/inc/drawingml/misccontexts.hxx | 2 |
3 files changed, 2 insertions, 5 deletions
diff --git a/oox/inc/drawingml/customshapegeometry.hxx b/oox/inc/drawingml/customshapegeometry.hxx index 6108d1483ff9..a8a97c0882ad 100644 --- a/oox/inc/drawingml/customshapegeometry.hxx +++ b/oox/inc/drawingml/customshapegeometry.hxx @@ -32,7 +32,7 @@ namespace oox { namespace drawingml { class CustomShapeGeometryContext : public ::oox::core::ContextHandler2 { public: - CustomShapeGeometryContext( ::oox::core::ContextHandler2Helper& rParent, const ::oox::AttributeList& rAttributes, CustomShapeProperties& rCustomShapeProperties ); + CustomShapeGeometryContext( ::oox::core::ContextHandler2Helper& rParent, CustomShapeProperties& rCustomShapeProperties ); virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 aElementToken, const ::oox::AttributeList& rAttribs ) override; private: diff --git a/oox/inc/drawingml/customshapeproperties.hxx b/oox/inc/drawingml/customshapeproperties.hxx index 912bfd26251e..0a4a338e8db6 100644 --- a/oox/inc/drawingml/customshapeproperties.hxx +++ b/oox/inc/drawingml/customshapeproperties.hxx @@ -110,8 +110,7 @@ public: CustomShapeProperties(); ~CustomShapeProperties(); - void pushToPropSet( const ::oox::core::FilterBase& rFilterBase, - const css::uno::Reference < css::beans::XPropertySet > & xPropSet, + void pushToPropSet( const css::uno::Reference < css::beans::XPropertySet > & xPropSet, const css::uno::Reference < css::drawing::XShape > & xShape, const css::awt::Size &aSize ); diff --git a/oox/inc/drawingml/misccontexts.hxx b/oox/inc/drawingml/misccontexts.hxx index 67d2d0e1666f..4c26599a9787 100644 --- a/oox/inc/drawingml/misccontexts.hxx +++ b/oox/inc/drawingml/misccontexts.hxx @@ -34,7 +34,6 @@ class SolidFillContext : public ColorContext public: explicit SolidFillContext( ::oox::core::ContextHandler2Helper& rParent, - const ::oox::AttributeList& rAttribs, FillProperties& rFillProps ); }; @@ -123,7 +122,6 @@ class DuotoneContext : public ::oox::core::ContextHandler2 public: explicit DuotoneContext( ::oox::core::ContextHandler2Helper& rParent, - const ::oox::AttributeList& rAttribs, BlipFillProperties& rBlipProps ); virtual ~DuotoneContext() override; |