summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-09-08 10:23:09 +0100
committerCaolán McNamara <caolanm@redhat.com>2020-09-08 12:38:03 +0200
commitaeda22ce8f81c9b79a2d15deb6dcf4ffdf2dcf37 (patch)
tree906a0cea14e3e842677a2a9d88609ddb24356c4d /xmloff
parent0655e72add8386642abdf6e2990c5af7532b32a6 (diff)
cid#1466654 Uninitialized scalar field
Change-Id: Ic8760df2b5ddbe281aa8e6c21a79eb5675274650 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102228 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/chart/transporttypes.hxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/xmloff/source/chart/transporttypes.hxx b/xmloff/source/chart/transporttypes.hxx
index 67deb3748cb9..28527c6c06f8 100644
--- a/xmloff/source/chart/transporttypes.hxx
+++ b/xmloff/source/chart/transporttypes.hxx
@@ -199,6 +199,8 @@ struct DataRowPointStyle
// ctor for use in import of <chart:data-label> as child of <chart:series>
DataRowPointStyle(StyleType eType, const OUString& sStyleName, sal_Int32 nAttachedAxis = 0)
: meType(eType)
+ , m_nPointIndex(0)
+ , m_nPointRepeat(0)
, msStyleName(sStyleName)
, mnAttachedAxis(nAttachedAxis)
, mbSymbolSizeForSeriesIsMissingInFile(false)