diff options
author | Eike Rathke <erack@erack.de> | 2011-08-24 01:39:19 +0200 |
---|---|---|
committer | Eike Rathke <erack@erack.de> | 2011-08-24 01:39:43 +0200 |
commit | fcac4e3eb4df6dcd4d6f6955a5d369262bcd1ea4 (patch) | |
tree | 2b48f9ffe8469737fe4ee297c0ffe1c83f228881 /sc/inc | |
parent | 326494b71ce56488760d42c245df745deb713b16 (diff) |
replace ScNameToken with proper FormulaIndexToken
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/token.hxx | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/sc/inc/token.hxx b/sc/inc/token.hxx index cec672fddb95..90c9dfbc48ac 100644 --- a/sc/inc/token.hxx +++ b/sc/inc/token.hxx @@ -236,24 +236,6 @@ public: virtual FormulaToken* Clone() const { return new ScExternalDoubleRefToken(*this); } }; -class ScNameToken : public ScToken -{ -private: - sal_uInt16 mnIndex; - bool mbGlobal; // true = global, false = local -private: - ScNameToken(); // disabled -public: - ScNameToken(sal_uInt16 nIndex, bool bGlobal, OpCode eOpCode = ocName); - ScNameToken(const ScNameToken& r); - virtual ~ScNameToken(); - virtual sal_uInt8 GetByte() const; - virtual void SetByte(sal_uInt8 aGlobal); - virtual sal_uInt16 GetIndex() const; - virtual bool operator==( const formula::FormulaToken& rToken ) const; - virtual FormulaToken* Clone() const { return new ScNameToken(*this); } -}; - class ScExternalNameToken : public ScToken { private: |