diff options
Diffstat (limited to 'formula')
-rw-r--r-- | formula/source/core/api/FormulaCompiler.cxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/formula/source/core/api/FormulaCompiler.cxx b/formula/source/core/api/FormulaCompiler.cxx index 1051b7367593..03028558e8e4 100644 --- a/formula/source/core/api/FormulaCompiler.cxx +++ b/formula/source/core/api/FormulaCompiler.cxx @@ -529,14 +529,18 @@ DBG_NAME(FormulaCompiler) FormulaCompiler::FormulaCompiler( FormulaTokenArray& rArr ) : pArr( &rArr ), + pCode( NULL ), pStack( NULL ), - nRecursion(0), + eLastOp( ocPush ), + nRecursion( 0 ), nNumFmt( NUMBERFORMAT_UNDEFINED ), + pc( 0 ), meGrammar( formula::FormulaGrammar::GRAM_UNSPECIFIED ), bAutoCorrect( false ), bCorrected( false ), bCompileForFAP( false ), - bIgnoreErrors( false ) + bIgnoreErrors( false ), + glSubTotal( false ) { DBG_CTOR(FormulaCompiler, NULL); |