summaryrefslogtreecommitdiff
path: root/xmloff/source/draw
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2021-09-03 09:11:06 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-09-03 12:44:22 +0200
commit6cc1ee903544ed813402303e93753dac8226984f (patch)
treeacdc326ef0272b74472c701e6df784082d3883ef /xmloff/source/draw
parent65d4320110d3f6ab9242389fdc8d392de13cbb74 (diff)
clang-tidy:readability-redundant-member-init
Change-Id: Iede70151af052505b780c6ce708aa74d97da5c75 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121545 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmloff/source/draw')
-rw-r--r--xmloff/source/draw/shapeexport.cxx1
-rw-r--r--xmloff/source/draw/ximpshap.cxx9
2 files changed, 2 insertions, 8 deletions
diff --git a/xmloff/source/draw/shapeexport.cxx b/xmloff/source/draw/shapeexport.cxx
index d10a99c67a53..455ca3b4e024 100644
--- a/xmloff/source/draw/shapeexport.cxx
+++ b/xmloff/source/draw/shapeexport.cxx
@@ -172,7 +172,6 @@ constexpr OUStringLiteral gsHyperlink( u"Hyperlink" );
XMLShapeExport::XMLShapeExport(SvXMLExport& rExp,
SvXMLExportPropertyMapper *pExtMapper )
: mrExport( rExp ),
- maShapesInfos(),
maCurrentShapesIter(maShapesInfos.end()),
mbExportLayer( false ),
// #88546# init to sal_False
diff --git a/xmloff/source/draw/ximpshap.cxx b/xmloff/source/draw/ximpshap.cxx
index 068205635e75..09dfc2ca7645 100644
--- a/xmloff/source/draw/ximpshap.cxx
+++ b/xmloff/source/draw/ximpshap.cxx
@@ -157,7 +157,6 @@ SdXMLShapeContext::SdXMLShapeContext(
, mnRelWidth(0)
, mnRelHeight(0)
, maPosition(0, 0)
- , maUsedTransformation()
, mbVisible(true)
, mbPrintable(true)
, mbHaveXmlId(false)
@@ -2264,8 +2263,7 @@ SdXMLGraphicObjectShapeContext::SdXMLGraphicObjectShapeContext(
SvXMLImport& rImport,
const css::uno::Reference< css::xml::sax::XFastAttributeList>& xAttrList,
uno::Reference< drawing::XShapes > const & rShapes)
-: SdXMLShapeContext( rImport, xAttrList, rShapes, false/*bTemporaryShape*/ ),
- maURL()
+: SdXMLShapeContext( rImport, xAttrList, rShapes, false/*bTemporaryShape*/ )
{
}
@@ -3154,10 +3152,7 @@ SdXMLFrameShapeContext::SdXMLFrameShapeContext( SvXMLImport& rImport,
css::uno::Reference< css::drawing::XShapes > const & rShapes,
bool bTemporaryShape)
: SdXMLShapeContext( rImport, xAttrList, rShapes, bTemporaryShape ),
- MultiImageImportHelper(),
- mbSupportsReplacement( false ),
- mxImplContext(),
- mxReplImplContext()
+ mbSupportsReplacement( false )
{
uno::Reference < util::XCloneable > xClone( xAttrList, uno::UNO_QUERY );
if( xClone.is() )