Kaydet (Commit) 1eaf73af authored tarafından Kohei Yoshida's avatar Kohei Yoshida

Don't forget to add breaks here...

Change-Id: I2887382d8eb30a0ba715493a38dda3d0e5ec4d7d
üst 34c491da
......@@ -1649,6 +1649,7 @@ bool ScColumn::ResolveStaticReference( ScMatrix& rMat, SCCOL nMatCol, SCROW nRow
ScValueCell* pVC = static_cast<ScValueCell*>(it->pCell);
rMat.PutDouble(pVC->GetValue(), nMatCol, it->nRow - nRow1);
}
break;
case CELLTYPE_FORMULA:
{
ScFormulaCell* pFC = static_cast<ScFormulaCell*>(it->pCell);
......@@ -1658,6 +1659,7 @@ bool ScColumn::ResolveStaticReference( ScMatrix& rMat, SCCOL nMatCol, SCROW nRow
rMat.PutDouble(pFC->GetResultDouble(), nMatCol, it->nRow - nRow1);
}
break;
default:
;
}
......
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