diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2013-11-14 14:57:21 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2013-11-14 23:53:52 -0500 |
commit | 8819e6909568ec8e3feebb4226ef4f381af209a9 (patch) | |
tree | f66470ecc1d137da1a2c3fccd020b482d244b71a | |
parent | d9a914fe5b221f879c6fb7873c7e7011dc655421 (diff) |
Remove unused member.
Change-Id: I8331251f77fb202375370a425e01862aa0f6310d
-rw-r--r-- | formula/source/core/api/FormulaCompiler.cxx | 2 | ||||
-rw-r--r-- | include/formula/FormulaCompiler.hxx | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/formula/source/core/api/FormulaCompiler.cxx b/formula/source/core/api/FormulaCompiler.cxx index f65d0b324fb9..480d557c301d 100644 --- a/formula/source/core/api/FormulaCompiler.cxx +++ b/formula/source/core/api/FormulaCompiler.cxx @@ -529,7 +529,6 @@ DBG_NAME(FormulaCompiler) FormulaCompiler::FormulaCompiler( FormulaTokenArray& rArr ) : pArr( &rArr ), - pExternalRef(NULL), pStack( NULL ), nRecursion(0), nNumFmt( NUMBERFORMAT_UNDEFINED ), @@ -546,7 +545,6 @@ FormulaCompiler::FormulaCompiler( FormulaTokenArray& rArr ) FormulaCompiler::FormulaCompiler() : pArr( NULL ), - pExternalRef(NULL), pStack( NULL ), nRecursion(0), nNumFmt( NUMBERFORMAT_UNDEFINED ), diff --git a/include/formula/FormulaCompiler.hxx b/include/formula/FormulaCompiler.hxx index e851fcfc521e..b450ed69113e 100644 --- a/include/formula/FormulaCompiler.hxx +++ b/include/formula/FormulaCompiler.hxx @@ -320,7 +320,6 @@ protected: FormulaTokenRef mpToken; // current token FormulaTokenRef pCurrentFactorToken; // current factor token (of Factor() method) FormulaTokenArray* pArr; - ExternalReferenceHelper* pExternalRef; FormulaToken** pCode; FormulaArrayStack* pStack; |