diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2020-11-21 11:55:28 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-11-21 15:22:08 +0100 |
commit | fc828fb382cc187ab645b00b8f780fbdab2ceed3 (patch) | |
tree | 5b8803af96656182f59e144faf5ef850364d111f /include/xmloff | |
parent | fdbc616f6dd01a5b34b98abb6317d6fe3894285c (diff) |
remove some prefix and local params from constructors
Change-Id: Iaffbefe98ced97610b99a00b1b3011c6a79a7859
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106300
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/xmloff')
-rw-r--r-- | include/xmloff/shapeimport.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/xmloff/shapeimport.hxx b/include/xmloff/shapeimport.hxx index 1dcb16ebe4e6..b4bc6bf44c3a 100644 --- a/include/xmloff/shapeimport.hxx +++ b/include/xmloff/shapeimport.hxx @@ -201,8 +201,7 @@ protected: OUString msHyperlink; public: - SvXMLShapeContext( SvXMLImport& rImp, sal_uInt16 nPrfx, - const OUString& rLName, bool bTemporaryShape ) : SvXMLImportContext( rImp, nPrfx, rLName ), mbTemporaryShape(bTemporaryShape) {} + SvXMLShapeContext( SvXMLImport& rImp, bool bTemporaryShape ) : SvXMLImportContext( rImp ), mbTemporaryShape(bTemporaryShape) {} const css::uno::Reference< css::drawing::XShape >& getShape() const { return mxShape; } |