summaryrefslogtreecommitdiff
path: root/include/filter
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-02-07 23:21:21 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-02-08 12:30:16 -0600
commit618891adc69a27e9461bbc6ba69f4168426223ef (patch)
treec310683448d3cd0961d6a534e5a2c6b282553b48 /include/filter
parent47a82e10ca56a09846b275c0cf5af036791d31b0 (diff)
coverity#707784 Unitialized scalar field
Change-Id: Iac0a1bb3dd01cc51d17e040a96a8c866fac01058
Diffstat (limited to 'include/filter')
-rw-r--r--include/filter/msfilter/svdfppt.hxx12
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