From 8819e6909568ec8e3feebb4226ef4f381af209a9 Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Thu, 14 Nov 2013 14:57:21 -0500 Subject: Remove unused member. Change-Id: I8331251f77fb202375370a425e01862aa0f6310d --- formula/source/core/api/FormulaCompiler.cxx | 2 -- include/formula/FormulaCompiler.hxx | 1 - 2 files changed, 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; -- cgit