diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2016-04-21 17:31:18 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2016-04-22 01:37:09 +0000 |
commit | 11f13f55b7e76811946979f363638597d882b88b (patch) | |
tree | 5ca96735b10f69c7a1175035cd7a2d7e4e87611a /starmath/inc/parse.hxx | |
parent | cd6ec105eb154b5f839b1ed27d30f3ee52ae0e6d (diff) |
starmath: Drop member variable set but not used
Its usage was gone with 9adcd261054a0e99ae032be5e7428e28a6663975.
Change-Id: Ibd322531365c2e0ccad85d553781611dfe96d54e
Reviewed-on: https://gerrit.libreoffice.org/24277
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Takeshi Abe <tabe@fixedpoint.jp>
Diffstat (limited to 'starmath/inc/parse.hxx')
-rw-r--r-- | starmath/inc/parse.hxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/starmath/inc/parse.hxx b/starmath/inc/parse.hxx index 7dbd3977fb5e..34194de3b55e 100644 --- a/starmath/inc/parse.hxx +++ b/starmath/inc/parse.hxx @@ -19,7 +19,7 @@ #ifndef INCLUDED_STARMATH_INC_PARSE_HXX #define INCLUDED_STARMATH_INC_PARSE_HXX -#include <vcl/svapp.hxx> +#include <com/sun/star/lang/Locale.hpp> #include <memory> #include <set> #include <vector> @@ -36,7 +36,6 @@ class SmParser SmNodeStack m_aNodeStack; std::vector<std::unique_ptr<SmErrorDesc>> m_aErrDescList; int m_nCurError; - LanguageType m_nLang; sal_Int32 m_nBufferIndex, m_nTokenIndex; sal_Int32 m_Row, @@ -91,8 +90,6 @@ class SmParser void DoGlyphSpecial(); // end of grammar - void SetLanguage( LanguageType nNewLang ) { m_nLang = nNewLang; } - void Error(SmParseError Error); void ClearUsedSymbols() { m_aUsedSymbols.clear(); } |