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

coverity#708711 Uninitialized scalar field

Change-Id: I3f67e5609d0c25837b56d65ade364fc29c87d057
üst 861c92c7
......@@ -94,15 +94,14 @@ SvXMLEnumMapEntry const aIndexTypeMap[] =
};
XMLIndexTOCContext::XMLIndexTOCContext(
SvXMLImport& rImport,
sal_uInt16 nPrfx,
const OUString& rLocalName )
: SvXMLImportContext(rImport, nPrfx, rLocalName)
, sTitle("Title")
, sIsProtected("IsProtected")
, sName("Name")
, bValid(sal_False)
XMLIndexTOCContext::XMLIndexTOCContext(SvXMLImport& rImport,
sal_uInt16 nPrfx, const OUString& rLocalName)
: SvXMLImportContext(rImport, nPrfx, rLocalName)
, sTitle("Title")
, sIsProtected("IsProtected")
, sName("Name")
, eIndexType(TEXT_INDEX_UNKNOWN)
, bValid(sal_False)
{
if (XML_NAMESPACE_TEXT == nPrfx)
{
......
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