diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-21 11:36:36 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-21 12:40:34 +0000 |
commit | 861c92c7c004ac0b06db05d6d570656679e6ba18 (patch) | |
tree | 709db292a47802d02037e5aeb19e8494f32a4095 | |
parent | d44b788e7a036a51601865319836263b2fbd242f (diff) |
coverity#708712 Uninitialized scalar field
Change-Id: I11ac81246cba518763a9af759fa4b08880c90ae8
-rw-r--r-- | xmloff/source/text/XMLIndexTOCStylesContext.cxx | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/xmloff/source/text/XMLIndexTOCStylesContext.cxx b/xmloff/source/text/XMLIndexTOCStylesContext.cxx index 93180c4da8fe..25d02390626c 100644 --- a/xmloff/source/text/XMLIndexTOCStylesContext.cxx +++ b/xmloff/source/text/XMLIndexTOCStylesContext.cxx @@ -47,13 +47,12 @@ TYPEINIT1( XMLIndexTOCStylesContext, SvXMLImportContext ); XMLIndexTOCStylesContext::XMLIndexTOCStylesContext( - SvXMLImport& rImport, - Reference<XPropertySet> & rPropSet, - sal_uInt16 nPrfx, - const OUString& rLocalName ) -: SvXMLImportContext(rImport, nPrfx, rLocalName) -, sLevelParagraphStyles(sAPI_LevelParagraphStyles) -, rTOCPropertySet(rPropSet) + SvXMLImport& rImport, Reference<XPropertySet> & rPropSet, + sal_uInt16 nPrfx, const OUString& rLocalName) + : SvXMLImportContext(rImport, nPrfx, rLocalName) + , sLevelParagraphStyles(sAPI_LevelParagraphStyles) + , rTOCPropertySet(rPropSet) + , nOutlineLevel(0) { } |