summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-12-19 15:44:32 +0200
committerTor Lillqvist <tml@collabora.com>2014-12-19 18:33:35 +0200
commit9adb00cf4df13e6f251c0ff5f71bce5ca2c7525d (patch)
tree94140c213f84fcfd6e4162c84c01dfd744521b20 /include
parente155e05ab70f1744d296dbee8c61564a5b7d346c (diff)
The value of the nRefs field is not used anywhere
Change-Id: I9116611d04846af7f00cb366e9174fd99e741d5c
Diffstat (limited to 'include')
-rw-r--r--include/formula/tokenarray.hxx3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/formula/tokenarray.hxx b/include/formula/tokenarray.hxx
index ceb84253f246..043e349bf0cd 100644
--- a/include/formula/tokenarray.hxx
+++ b/include/formula/tokenarray.hxx
@@ -103,7 +103,6 @@ protected:
sal_uInt16 nRPN; // Length of RPN array
sal_uInt16 nIndex; // Current step index
sal_uInt16 nError; // Error code
- short nRefs; // Count of cell references
ScRecalcMode nMode; // Flags to indicate when to recalc this code
bool bHyperLink; // If HYPERLINK() occurs in the formula.
@@ -176,8 +175,6 @@ public:
void Reset() { nIndex = 0; }
sal_uInt16 GetCodeError() const { return nError; }
void SetCodeError( sal_uInt16 n ) { nError = n; }
- short GetRefs() const { return nRefs; }
- void IncrementRefs() { ++nRefs; }
void SetHyperLink( bool bVal ) { bHyperLink = bVal; }
bool IsHyperLink() const { return bHyperLink; }