Kaydet (Commit) 9bdf5e9d authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

coverity#1038497 : Uninitialized scalar field

Change-Id: I814eb68a74812b83dd98e80cf286fc11e6f57fab
üst 61ca9005
......@@ -15,10 +15,12 @@
ScSimpleFormulaCalculator::ScSimpleFormulaCalculator( ScDocument* pDoc, const ScAddress& rAddr,
const OUString& rFormula, formula::FormulaGrammar::Grammar eGram ):
mbCalculated(false),
maAddr(rAddr),
mpDoc(pDoc)
const OUString& rFormula, formula::FormulaGrammar::Grammar eGram )
: mnFormatType(0)
, mnFormatIndex(0)
, mbCalculated(false)
, maAddr(rAddr)
, mpDoc(pDoc)
{
// compile already here
ScCompiler aComp(pDoc, rAddr);
......
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