summaryrefslogtreecommitdiff
path: root/formula
diff options
context:
space:
mode:
Diffstat (limited to 'formula')
-rw-r--r--formula/source/core/api/FormulaCompiler.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/formula/source/core/api/FormulaCompiler.cxx b/formula/source/core/api/FormulaCompiler.cxx
index 58a896184be1..7064e0f54f46 100644
--- a/formula/source/core/api/FormulaCompiler.cxx
+++ b/formula/source/core/api/FormulaCompiler.cxx
@@ -540,22 +540,24 @@ FormulaCompiler::FormulaCompiler( FormulaTokenArray& rArr )
bCompileForFAP( false ),
bIgnoreErrors( false ),
glSubTotal( false )
-
{
}
FormulaCompiler::FormulaCompiler()
:
pArr( NULL ),
+ pCode( NULL ),
pStack( NULL ),
+ 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 )
{
}