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