summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/data/column.cxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/sc/source/core/data/column.cxx b/sc/source/core/data/column.cxx
index 34524e444dc3..dea1adde51f3 100644
--- a/sc/source/core/data/column.cxx
+++ b/sc/source/core/data/column.cxx
@@ -605,19 +605,15 @@ ScRefCellValue ScColumn::GetCellValue( const sc::CellStoreType::const_iterator&
case sc::element_type_numeric:
// Numeric cell
return ScRefCellValue(sc::numeric_block::at(*itPos->data, nOffset));
- break;
case sc::element_type_string:
// String cell
return ScRefCellValue(&sc::string_block::at(*itPos->data, nOffset));
- break;
case sc::element_type_edittext:
// Edit cell
return ScRefCellValue(sc::edittext_block::at(*itPos->data, nOffset));
- break;
case sc::element_type_formula:
// Formula cell
return ScRefCellValue(sc::formula_block::at(*itPos->data, nOffset));
- break;
default:
return ScRefCellValue(); // empty cell
}