summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-06-25 07:15:56 +0300
committerTor Lillqvist <tml@iki.fi>2013-06-25 07:15:56 +0300
commit88d953565b44ccc4b3c00e1d0e343a91cb879313 (patch)
treee1b0615132d722499f2f29062421fe1041ee4603
parent3c87f574f7487d94f05cd95ac1cc26a4953dc6ec (diff)
WaE: private field 'mrAttrs' is not used
Change-Id: I3b87820eee8182e6c4b36d62acfe90cabd830c86
-rw-r--r--sc/source/core/data/column.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/sc/source/core/data/column.cxx b/sc/source/core/data/column.cxx
index 9dc41b1b8494..8cc4786a20b5 100644
--- a/sc/source/core/data/column.cxx
+++ b/sc/source/core/data/column.cxx
@@ -2499,12 +2499,11 @@ struct ResetChangedHandler
class FindEditCellsHandler
{
ScColumn& mrColumn;
- sc::CellTextAttrStoreType& mrAttrs;
sc::CellTextAttrStoreType::iterator miAttrPos;
public:
FindEditCellsHandler(ScColumn& rColumn, sc::CellTextAttrStoreType& rAttrs) :
- mrColumn(rColumn), mrAttrs(rAttrs), miAttrPos(rAttrs.begin()) {}
+ mrColumn(rColumn), miAttrPos(rAttrs.begin()) {}
bool operator() (size_t, const EditTextObject*)
{