diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2016-05-06 17:40:29 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2016-05-08 10:34:05 +0000 |
commit | 6cd62368915466a2b2054cffb172fd368a6b329d (patch) | |
tree | a7eb2496b8ea6e5042a40592767efbb41c843f23 /starmath | |
parent | 5d60bbc071eb05642094ea176eff7d7ac8d59adf (diff) |
starmath: Drop useless last entry of aTokenTable
Change-Id: I3189c875cc8b2046f5a0353fb641a7d6ea9fdd9a
Reviewed-on: https://gerrit.libreoffice.org/24692
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Takeshi Abe <tabe@fixedpoint.jp>
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/source/parse.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/starmath/source/parse.cxx b/starmath/source/parse.cxx index a54189318cb7..b2bb9bb67e67 100644 --- a/starmath/source/parse.cxx +++ b/starmath/source/parse.cxx @@ -288,8 +288,7 @@ static const SmTokenTableEntry aTokenTable[] = { "wideslash", TWIDESLASH, MS_SLASH, TGPRODUCT, 0 }, { "widevec", TWIDEVEC, MS_VEC, TGATTRIBUT, 5}, { "wp" , TWP, MS_WP, TGSTANDALONE, 5}, - { "yellow", TYELLOW, '\0', TGCOLOR, 0}, - { "", TEND, '\0', 0, 0} + { "yellow", TYELLOW, '\0', TGCOLOR, 0} }; const SmTokenTableEntry * SmParser::GetTokenTableEntry( const OUString &rName ) |