diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-06-25 07:19:41 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-06-25 07:19:41 +0300 |
commit | 022c54742e7997bf46a608f1ab0b500f2537f7f5 (patch) | |
tree | 08abdc70982a5a44e7213cbce858a5a7fce918e3 /sc | |
parent | ab86388c85f085adfe1edfe21a8ee8500a68449f (diff) |
WaE: private field 'mrCells' is not used
Change-Id: I0ab3fabb82c839f5194b0e20eb834dd86635a609
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/data/column3.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sc/source/core/data/column3.cxx b/sc/source/core/data/column3.cxx index 1aae1e5ca0c1..11c4474ef9d7 100644 --- a/sc/source/core/data/column3.cxx +++ b/sc/source/core/data/column3.cxx @@ -1831,13 +1831,12 @@ namespace { class StrCellIterator { typedef std::pair<sc::CellStoreType::const_iterator,size_t> PosType; - const sc::CellStoreType& mrCells; PosType maPos; sc::CellStoreType::const_iterator miBeg; sc::CellStoreType::const_iterator miEnd; public: StrCellIterator(const sc::CellStoreType& rCells, SCROW nStart) : - mrCells(rCells), maPos(rCells.position(nStart)), miBeg(rCells.begin()), miEnd(rCells.end()) {} + maPos(rCells.position(nStart)), miBeg(rCells.begin()), miEnd(rCells.end()) {} bool valid() const { return (maPos.first != miEnd); } |