Kaydet (Commit) 861c92c7 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#708712 Uninitialized scalar field

Change-Id: I11ac81246cba518763a9af759fa4b08880c90ae8
üst d44b788e
...@@ -47,13 +47,12 @@ TYPEINIT1( XMLIndexTOCStylesContext, SvXMLImportContext ); ...@@ -47,13 +47,12 @@ TYPEINIT1( XMLIndexTOCStylesContext, SvXMLImportContext );
XMLIndexTOCStylesContext::XMLIndexTOCStylesContext( XMLIndexTOCStylesContext::XMLIndexTOCStylesContext(
SvXMLImport& rImport, SvXMLImport& rImport, Reference<XPropertySet> & rPropSet,
Reference<XPropertySet> & rPropSet, sal_uInt16 nPrfx, const OUString& rLocalName)
sal_uInt16 nPrfx, : SvXMLImportContext(rImport, nPrfx, rLocalName)
const OUString& rLocalName ) , sLevelParagraphStyles(sAPI_LevelParagraphStyles)
: SvXMLImportContext(rImport, nPrfx, rLocalName) , rTOCPropertySet(rPropSet)
, sLevelParagraphStyles(sAPI_LevelParagraphStyles) , nOutlineLevel(0)
, rTOCPropertySet(rPropSet)
{ {
} }
......
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