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

coverity#708713 Uninitialized scalar field

Change-Id: Ia7a75985df0ad80e7cf0006b63a3f2a25c93bab1
üst fec7d941
...@@ -56,18 +56,17 @@ TYPEINIT1(XMLIndexTableSourceContext, XMLIndexSourceBaseContext); ...@@ -56,18 +56,17 @@ TYPEINIT1(XMLIndexTableSourceContext, XMLIndexSourceBaseContext);
XMLIndexTableSourceContext::XMLIndexTableSourceContext( XMLIndexTableSourceContext::XMLIndexTableSourceContext(
SvXMLImport& rImport, SvXMLImport& rImport, sal_uInt16 nPrfx,
sal_uInt16 nPrfx, const OUString& rLocalName, Reference<XPropertySet> & rPropSet)
const OUString& rLocalName, : XMLIndexSourceBaseContext(rImport, nPrfx, rLocalName,
Reference<XPropertySet> & rPropSet) : rPropSet, sal_False)
XMLIndexSourceBaseContext(rImport, nPrfx, rLocalName, , sCreateFromLabels(sAPI_CreateFromLabels)
rPropSet, sal_False), , sLabelCategory(sAPI_LabelCategory)
sCreateFromLabels(sAPI_CreateFromLabels), , sLabelDisplayType(sAPI_LabelDisplayType)
sLabelCategory(sAPI_LabelCategory), , nDisplayFormat(0)
sLabelDisplayType(sAPI_LabelDisplayType), , bSequenceOK(sal_False)
bSequenceOK(sal_False), , bDisplayFormatOK(sal_False)
bDisplayFormatOK(sal_False), , bUseCaption(sal_True)
bUseCaption(sal_True)
{ {
} }
......
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