Kaydet (Commit) 65721e49 authored tarafından Eike Rathke [er]'s avatar Eike Rathke [er] Kaydeden (comit) Eike Rathke

calcishmakkica: init vars

Merged from Apache OO.
http://svn.apache.org/viewvc?rev=1381450&view=rev
Original Apache OO committer: Andrew Rist <arist@apache.org>

Original Author: Eike Rathke [er] <eike.rathke@oracle.com>
Original Committer: Eike Rathke [er] <eike.rathke@oracle.com>

 # HG changeset patch
 # User Eike Rathke [er] <eike.rathke@oracle.com>
 # Date 1298043566 -3600
 # Node ID 346e0beefed21519bbb6545bccfea022dd75ed66
 # Parent  2416febcae5c81a24b40439f09f91e40a686b911

Change-Id: I5c2b6f9a34336a734bd96e067ec57a2f58d4488c
üst f28cafdc
......@@ -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() )
{
......
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