[Libreoffice-commits] core.git: Branch 'feature/formula-core-rework' - sc/source

Kohei Yoshida kohei.yoshida at gmail.com
Fri Apr 26 20:04:40 PDT 2013


 sc/source/core/data/column2.cxx |    2 ++
 1 file changed, 2 insertions(+)

New commits:
commit d0f49af360ed35c3c3be6e8151c8b2ebd9b6e6e1
Author: Kohei Yoshida <kohei.yoshida at gmail.com>
Date:   Fri Apr 26 23:07:03 2013 -0400

    Don't forget to add breaks here...
    
    Change-Id: I2887382d8eb30a0ba715493a38dda3d0e5ec4d7d

diff --git a/sc/source/core/data/column2.cxx b/sc/source/core/data/column2.cxx
index 20483f8..6bcf282 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:
                 ;
         }


More information about the Libreoffice-commits mailing list