diff options
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/tool/interpr1.cxx | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/sc/source/core/tool/interpr1.cxx b/sc/source/core/tool/interpr1.cxx index 435a5093a4b1..43109e17dda7 100644 --- a/sc/source/core/tool/interpr1.cxx +++ b/sc/source/core/tool/interpr1.cxx @@ -5600,12 +5600,12 @@ void ScInterpreter::ScCountIf() size_t nRefInList = 0; while (nParam-- > 0) { - SCCOL nCol1; - SCROW nRow1; - SCTAB nTab1; - SCCOL nCol2; - SCROW nRow2; - SCTAB nTab2; + SCCOL nCol1 = 0; + SCROW nRow1 = 0; + SCTAB nTab1 = 0; + SCCOL nCol2 = 0; + SCROW nRow2 = 0; + SCTAB nTab2 = 0; ScMatrixRef pQueryMatrix; switch ( GetStackType() ) { @@ -5819,12 +5819,12 @@ double ScInterpreter::IterateParametersIfs( ScIterFuncIfs eFunc ) // take range nParam = 1; nRefInList = 0; - SCCOL nCol1; - SCROW nRow1; - SCTAB nTab1; - SCCOL nCol2; - SCROW nRow2; - SCTAB nTab2; + SCCOL nCol1 = 0; + SCROW nRow1 = 0; + SCTAB nTab1 = 0; + SCCOL nCol2 = 0; + SCROW nRow2 = 0; + SCTAB nTab2 = 0; ScMatrixRef pQueryMatrix; switch ( GetStackType() ) { @@ -5973,12 +5973,12 @@ double ScInterpreter::IterateParametersIfs( ScIterFuncIfs eFunc ) nParam = 1; nRefInList = 0; bool bNull = true; - SCCOL nMainCol1; - SCROW nMainRow1; - SCTAB nMainTab1; - SCCOL nMainCol2; - SCROW nMainRow2; - SCTAB nMainTab2; + SCCOL nMainCol1 = 0; + SCROW nMainRow1 = 0; + SCTAB nMainTab1 = 0; + SCCOL nMainCol2 = 0; + SCROW nMainRow2 = 0; + SCTAB nMainTab2 = 0; ScMatrixRef pMainMatrix; switch ( GetStackType() ) { |