diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-06-25 07:14:42 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-06-25 07:14:42 +0300 |
commit | 3c87f574f7487d94f05cd95ac1cc26a4953dc6ec (patch) | |
tree | 2ab8c941b142bc6d891185f2b2a5398deb8ca5d2 | |
parent | 337225b36a2965cca532c73f02e9313149f73d80 (diff) |
WaE: unused variable 'itEnd'
Change-Id: Idec79adce1f4bbb4003b3e8fb76a1f4a40fcc13f
-rw-r--r-- | sc/source/core/data/column.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/data/column.cxx b/sc/source/core/data/column.cxx index bd1eeae72851..9dc41b1b8494 100644 --- a/sc/source/core/data/column.cxx +++ b/sc/source/core/data/column.cxx @@ -1174,7 +1174,7 @@ bool ScColumn::TestInsertRow( SCROW nStartRow, SCSIZE nSize ) const // Find the position of the last non-empty cell below nStartRow. size_t nLastNonEmptyRow = MAXROW; - sc::CellStoreType::const_reverse_iterator it = maCells.rbegin(), itEnd = maCells.rend(); + sc::CellStoreType::const_reverse_iterator it = maCells.rbegin(); if (it->type == sc::element_type_empty) nLastNonEmptyRow -= it->size; |