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

coverity#708700 Uninitialized scalar field

Change-Id: I294e455eb2b8853f2fbe43527a960e30d32c88c8
üst f65b691d
...@@ -608,13 +608,12 @@ public: ...@@ -608,13 +608,12 @@ public:
// classes for cells and their content // classes for cells and their content
// class SchXMLTableCellContext // class SchXMLTableCellContext
SchXMLTableCellContext::SchXMLTableCellContext( SchXMLTableCellContext::SchXMLTableCellContext(
SchXMLImportHelper& rImpHelper, SchXMLImportHelper& rImpHelper, SvXMLImport& rImport,
SvXMLImport& rImport, const OUString& rLocalName, SchXMLTable& aTable)
const OUString& rLocalName, : SvXMLImportContext(rImport, XML_NAMESPACE_TABLE, rLocalName)
SchXMLTable& aTable ) : , mrImportHelper(rImpHelper)
SvXMLImportContext( rImport, XML_NAMESPACE_TABLE, rLocalName ), , mrTable(aTable)
mrImportHelper( rImpHelper ), , mbReadText(false)
mrTable( aTable )
{ {
} }
......
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