diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-28 09:36:57 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-28 10:31:03 +0100 |
commit | 6da7bf8ca7c3b7f3918a10cb42b7268f23a12cd9 (patch) | |
tree | 025a5b1e04a20dfa94d6c1f411e8684ac5be85c0 /sc | |
parent | 1c843ef7bf2c4bf1c981b4f1e81e6c8cd2106513 (diff) |
coverity#708038 Uninitialized scalar field
Change-Id: I0954b9e1bc2ec845ac978acbdc4f48b405a0d3c8
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/excel/xlchart.cxx | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/sc/source/filter/excel/xlchart.cxx b/sc/source/filter/excel/xlchart.cxx index 4c359250a01d..58ccbaea5c2d 100644 --- a/sc/source/filter/excel/xlchart.cxx +++ b/sc/source/filter/excel/xlchart.cxx @@ -1219,11 +1219,13 @@ EXC_DEFINEFUNC_GETAXISTITLESHAPE( lclGetSecYAxisTitleShape, XSecondAxisTitleSupp } // namespace -XclChRootData::XclChRootData() : - mxTypeInfoProv( new XclChTypeInfoProvider ), - mxFmtInfoProv( new XclChFormatInfoProvider ), - mnBorderGapX( 0 ), - mnBorderGapY( 0 ) +XclChRootData::XclChRootData() + : mxTypeInfoProv(new XclChTypeInfoProvider) + , mxFmtInfoProv(new XclChFormatInfoProvider) + , mnBorderGapX(0) + , mnBorderGapY(0) + , mfUnitSizeX(0.0) + , mfUnitSizeY(0.0) { // remember some title shape getter functions maGetShapeFuncs[ XclChTextKey( EXC_CHTEXTTYPE_TITLE ) ] = lclGetMainTitleShape; |