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);
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)
{
}
......
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