diff options
-rw-r--r-- | include/filter/msfilter/svdfppt.hxx | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/include/filter/msfilter/svdfppt.hxx b/include/filter/msfilter/svdfppt.hxx index a64e05a7529b..b37bcb0e1027 100644 --- a/include/filter/msfilter/svdfppt.hxx +++ b/include/filter/msfilter/svdfppt.hxx @@ -921,7 +921,17 @@ struct ImplPPTCharPropSet sal_uInt16 mnEscapement; sal_uInt16 mnSymbolFont; - ImplPPTCharPropSet(){ mnRefCount = 1; mnAttrSet = 0; }; + ImplPPTCharPropSet() + : mnRefCount ( 1 ) + , mnAttrSet( 0 ) + , mnFlags( 0 ) + , mnFont( 0 ) + , mnAsianOrComplexFont( 0 ) + , mnANSITypeface( 0 ) + , mnFontHeight( 0 ) + , mnEscapement( 0 ) + , mnSymbolFont( 0) + { } }; struct PPTCharPropSet |