diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-06-22 14:50:10 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-06-23 09:01:24 +0200 |
commit | 7b5fac67fd2441778cb9a6d2f529adc270998144 (patch) | |
tree | 93031caf680ccfe0b7a34d89822811ff172c55fa /basic/source/comp | |
parent | 75ddf3a22aa83d1b067085bd7132acab5a088856 (diff) |
loplugin:unusedfields in accessibility..comphelper
Change-Id: Ifb68d65fc3e48dd80e3ff2b7a4124468fdda1695
Reviewed-on: https://gerrit.libreoffice.org/39137
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'basic/source/comp')
-rw-r--r-- | basic/source/comp/parser.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/basic/source/comp/parser.cxx b/basic/source/comp/parser.cxx index 45e1b49c9537..0347e0eccd62 100644 --- a/basic/source/comp/parser.cxx +++ b/basic/source/comp/parser.cxx @@ -122,7 +122,6 @@ SbiParser::SbiParser( StarBASIC* pb, SbModule* pm ) pStack = nullptr; pWithVar = nullptr; nBase = 0; - bText = bGblDefs = bNewGblDefs = bSingleLineIf = @@ -788,11 +787,9 @@ void SbiParser::Option() SbiToken eTok = Next(); if( eTok == BINARY ) { - bText = false; } else if( eTok == SYMBOL && GetSym().equalsIgnoreAsciiCase("text") ) { - bText = true; } else { |