From fc828fb382cc187ab645b00b8f780fbdab2ceed3 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Sat, 21 Nov 2020 11:55:28 +0200 Subject: 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 --- include/xmloff/shapeimport.hxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'include/xmloff') 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; } -- cgit