Kaydet (Commit) 7ab03b24 authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

coverity#707785 Unitialized scalar field

Change-Id: If3a54628ae6dc0deb605ff075695147d6a58762b
üst 618891ad
......@@ -891,8 +891,19 @@ struct ImplPPTParaPropSet
sal_uInt32 nDontKnow2;
sal_uInt16 nDontKnow2bit06;
ImplPPTParaPropSet()
{ mnRefCount = 1; mnAttrSet = 0; mnExtParagraphMask = 0; mnDepth = 0; };
ImplPPTParaPropSet()
: mnRefCount( 1 )
, mnDepth( 0 )
, mnAttrSet( 0 )
, mnBulletColor( 0 )
, mnExtParagraphMask( 0 )
, mnAnmScheme( 0 )
, mnHasAnm( 0 )
, mnBuBlip( 0 )
, nDontKnow1( 0 )
, nDontKnow2( 0 )
, nDontKnow2bit06( 0 )
{ }
};
struct PPTParaPropSet
......
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