summaryrefslogtreecommitdiff
path: root/sc/source/core/data/column3.cxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-03-23 08:29:03 +0200
committerTor Lillqvist <tml@collabora.com>2014-03-23 08:29:24 +0200
commite00136005db2784428f03635ff2f4a4e7196bb84 (patch)
tree8031eada5a83835b17b625ca781fe41394465cfd /sc/source/core/data/column3.cxx
parent23eccddfc37ebbf21c3001680782f1db4628d83d (diff)
WaE: unused variable 'it'
Change-Id: Ib98e20284a2311db5b93412be7c59026deeefee2
Diffstat (limited to 'sc/source/core/data/column3.cxx')
-rw-r--r--sc/source/core/data/column3.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/data/column3.cxx b/sc/source/core/data/column3.cxx
index 30168164b776..bd1cebd63689 100644
--- a/sc/source/core/data/column3.cxx
+++ b/sc/source/core/data/column3.cxx
@@ -1857,7 +1857,7 @@ bool ScColumn::SetFormulaCells( SCROW nRow, std::vector<ScFormulaCell*>& rCells
std::vector<sc::CellTextAttr> aDefaults(rCells.size(), sc::CellTextAttr());
maCellTextAttrs.set(nRow, aDefaults.begin(), aDefaults.end());
- sc::CellStoreType::iterator it = maCells.set(aPos.first, nRow, rCells.begin(), rCells.end());
+ maCells.set(aPos.first, nRow, rCells.begin(), rCells.end());
CellStorageModified();