diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-10-03 11:35:38 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-10-03 11:35:38 +0300 |
commit | d6c842e0e9f88a7edf642c8f807b92e7ced9a1d1 (patch) | |
tree | b0fef75658c5611d6c5f86e2e3a48588ce889df6 /sc | |
parent | adf74f8287a626d5dbd40a65c87cc79702b482fb (diff) |
WaE: private fields 'mnTab' and 'mnCol' are not used
Change-Id: I449b85b00aeaf690644e17be0a6b2b9398a3cd3f
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/data/column4.cxx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sc/source/core/data/column4.cxx b/sc/source/core/data/column4.cxx index c0c1fde3cb3f..a577e7a87e5f 100644 --- a/sc/source/core/data/column4.cxx +++ b/sc/source/core/data/column4.cxx @@ -326,15 +326,11 @@ namespace { class ConvertFormulaToValueHandler { - SCTAB mnTab; - SCCOL mnCol; sc::CellValues maResValues; bool mbModified; public: - ConvertFormulaToValueHandler( SCTAB nTab, SCCOL nCol ) : - mnTab(nTab), - mnCol(nCol), + ConvertFormulaToValueHandler( SCTAB, SCCOL ) : mbModified(false) { maResValues.reset(MAXROWCOUNT); |