summaryrefslogtreecommitdiff
path: root/filter/source/svg
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2021-08-31 14:54:07 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-08-31 17:28:58 +0200
commit8508873a24387fefacd95e11e2ed9f2a0027ad43 (patch)
tree310b45d233bc50aeb5dffb0fd2ba01c05f544e82 /filter/source/svg
parent7955fe46e226d74732993454e18be6835659c11c (diff)
clang-tidy:readability-redundant-member-init
Change-Id: Icaef0cca9ca7bce76a7eb7ecd54c492f9ffcaad6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121376 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'filter/source/svg')
-rw-r--r--filter/source/svg/svgfilter.cxx9
-rw-r--r--filter/source/svg/svgwriter.cxx13
2 files changed, 2 insertions, 20 deletions
diff --git a/filter/source/svg/svgfilter.cxx b/filter/source/svg/svgfilter.cxx
index d8a40437040c..2843e7df9637 100644
--- a/filter/source/svg/svgfilter.cxx
+++ b/filter/source/svg/svgfilter.cxx
@@ -75,18 +75,12 @@ SVGFilter::SVGFilter( const Reference< XComponentContext >& rxCtx ) :
mbSinglePage( false ),
mnVisiblePage( -1 ),
mpObjects( nullptr ),
- mxSrcDoc(),
- mxDstDoc(),
- maShapeSelection(),
mbExportShapeSelection(false),
- maFilterData(),
- mxDefaultPage(),
mbWriterFilter(false),
mbCalcFilter(false),
mbImpressFilter(false),
mpDefaultSdrPage( nullptr ),
- mbPresentation( false ),
- maOldFieldHdl()
+ mbPresentation( false )
{
}
@@ -721,7 +715,6 @@ public:
SVGFileInfo(
const uno::Reference<io::XInputStream>& xInput)
: mxInput(xInput),
- mnFirstBytes(),
mnFirstBytesSize(2048),
mnFirstRead(0),
mbProcessed(false),
diff --git a/filter/source/svg/svgwriter.cxx b/filter/source/svg/svgwriter.cxx
index 05d18bc3675c..082d7d8b0377 100644
--- a/filter/source/svg/svgwriter.cxx
+++ b/filter/source/svg/svgwriter.cxx
@@ -463,12 +463,6 @@ SVGTextWriter::SVGTextWriter(SVGExport& rExport, SVGAttributeWriter& rAttributeW
mrActionWriter(rActionWriter),
mpVDev( nullptr ),
mbIsTextShapeStarted( false ),
- mrTextShape(),
- msShapeId(),
- mrParagraphEnumeration(),
- mrCurrentTextParagraph(),
- mrTextPortionEnumeration(),
- mrCurrentTextPortion(),
mpTextEmbeddedBitmapMtf( nullptr ),
mpTargetMapMode( nullptr ),
mnLeftTextPortionLength( 0 ),
@@ -478,14 +472,10 @@ SVGTextWriter::SVGTextWriter(SVGExport& rExport, SVGAttributeWriter& rAttributeW
mbIsNewListItem( false ),
meNumberingType(0),
mcBulletChar(0),
- maBulletListItemMap(),
mbIsListLevelStyleImage( false ),
mbLineBreak( false ),
mbIsURLField( false ),
- msUrl(),
- mbIsPlaceholderShape( false ),
- maCurrentFont(),
- maParentFont()
+ mbIsPlaceholderShape( false )
{
}
@@ -1786,7 +1776,6 @@ SVGActionWriter::SVGActionWriter( SVGExport& rExport, SVGFontExport& rFontExport
mnCurMaskId( 1 ),
mnCurPatternId( 1 ),
mnCurClipPathId( 1 ),
- mpCurrentClipRegionElem(),
mrExport( rExport ),
maContextHandler(),
mrCurrentState( maContextHandler.getCurrentState() ),