summaryrefslogtreecommitdiffstats
path: root/xmloff/source/text/XMLIndexTableSourceContext.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-21 11:34:55 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-21 12:40:33 +0000
commitd44b788e7a036a51601865319836263b2fbd242f (patch)
tree7ce83fe4d0d80c1a8b98500a881fc7a52aca3cc0 /xmloff/source/text/XMLIndexTableSourceContext.cxx
parentcoverity#708715 unused member variable (diff)
downloadcore-d44b788e7a036a51601865319836263b2fbd242f.tar.gz
core-d44b788e7a036a51601865319836263b2fbd242f.zip
coverity#708713 Uninitialized scalar field
Change-Id: Ia7a75985df0ad80e7cf0006b63a3f2a25c93bab1
Diffstat (limited to 'xmloff/source/text/XMLIndexTableSourceContext.cxx')
-rw-r--r--xmloff/source/text/XMLIndexTableSourceContext.cxx23
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)
{
}