Kaydet (Commit) 498c878d authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

coverity#707670 : Uninitialized scalar field

Change-Id: I8815381cc1a9801ff5f5ecfac06ada234d5bc363
üst c74006b1
......@@ -36,10 +36,11 @@ struct lcl_ModelProperties
sal_Int32 m_nObjectLines;
::chart::ThreeDLookScheme m_eScheme;
lcl_ModelProperties() :
m_nRoundedEdges(-1),
m_nObjectLines(-1),
m_eScheme(::chart::ThreeDLookScheme_Unknown)
lcl_ModelProperties()
: m_aShadeMode(drawing::ShadeMode_FLAT)
, m_nRoundedEdges(-1)
, m_nObjectLines(-1)
, m_eScheme(::chart::ThreeDLookScheme_Unknown)
{}
};
......
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