Kaydet (Commit) 6da7bf8c authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#708038 Uninitialized scalar field

Change-Id: I0954b9e1bc2ec845ac978acbdc4f48b405a0d3c8
üst 1c843ef7
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment