diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-21 11:34:55 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-21 12:40:33 +0000 |
commit | d44b788e7a036a51601865319836263b2fbd242f (patch) | |
tree | 7ce83fe4d0d80c1a8b98500a881fc7a52aca3cc0 /xmloff | |
parent | fec7d941d06b651013a8c08fa5128beacbad637d (diff) |
coverity#708713 Uninitialized scalar field
Change-Id: Ia7a75985df0ad80e7cf0006b63a3f2a25c93bab1
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/text/XMLIndexTableSourceContext.cxx | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/xmloff/source/text/XMLIndexTableSourceContext.cxx b/xmloff/source/text/XMLIndexTableSourceContext.cxx index 44a75049d272..ee4d198b891c 100644 --- a/xmloff/source/text/XMLIndexTableSourceContext.cxx +++ b/xmloff/source/text/XMLIndexTableSourceContext.cxx @@ -56,18 +56,17 @@ TYPEINIT1(XMLIndexTableSourceContext, XMLIndexSourceBaseContext); XMLIndexTableSourceContext::XMLIndexTableSourceContext( - SvXMLImport& rImport, - sal_uInt16 nPrfx, - const OUString& rLocalName, - Reference<XPropertySet> & rPropSet) : - XMLIndexSourceBaseContext(rImport, nPrfx, rLocalName, - rPropSet, sal_False), - sCreateFromLabels(sAPI_CreateFromLabels), - sLabelCategory(sAPI_LabelCategory), - sLabelDisplayType(sAPI_LabelDisplayType), - bSequenceOK(sal_False), - bDisplayFormatOK(sal_False), - bUseCaption(sal_True) + SvXMLImport& rImport, sal_uInt16 nPrfx, + const OUString& rLocalName, Reference<XPropertySet> & rPropSet) + : XMLIndexSourceBaseContext(rImport, nPrfx, rLocalName, + rPropSet, sal_False) + , sCreateFromLabels(sAPI_CreateFromLabels) + , sLabelCategory(sAPI_LabelCategory) + , sLabelDisplayType(sAPI_LabelDisplayType) + , nDisplayFormat(0) + , bSequenceOK(sal_False) + , bDisplayFormatOK(sal_False) + , bUseCaption(sal_True) { } |