summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-04-26 23:07:03 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-04-30 13:10:40 -0400
commit1eaf73af59cc5bc25c40ef8d18b25f853d273229 (patch)
treeb7d69fb054290135f73cea1224d90725580278b5 /sc
parent34c491dabedf3ce4feb1db6d00df33e5573ec03c (diff)
Don't forget to add breaks here...
Change-Id: I2887382d8eb30a0ba715493a38dda3d0e5ec4d7d
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/data/column2.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/sc/source/core/data/column2.cxx b/sc/source/core/data/column2.cxx
index 20483f84a4d2..6bcf2829af2c 100644
--- a/sc/source/core/data/column2.cxx
+++ b/sc/source/core/data/column2.cxx
@@ -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:
;
}