summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-04-24 15:39:51 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-04-24 15:44:37 +0100
commitbc069413e54ae9626298f337b180dd4f142f4776 (patch)
treeb4345575cba5363c26523cae441dab64d17e1c97 /basic
parent17d08197761567f72f8b58c8aa71bac31701968e (diff)
WaE: return SYMBOL -> return true
has been return SYMBOL since initial checkin in 2000, SYMBOL is a non-0 enum so return true here instead
Diffstat (limited to 'basic')
-rw-r--r--basic/source/comp/scanner.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/comp/scanner.cxx b/basic/source/comp/scanner.cxx
index a664e571f307..6f7f0bdad1c3 100644
--- a/basic/source/comp/scanner.cxx
+++ b/basic/source/comp/scanner.cxx
@@ -419,7 +419,7 @@ bool SbiScanner::NextSym()
// treated as an operator
--pLine; --nCol; nCol1 = nCol-1;
aSym = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("&"));
- return SYMBOL;
+ return true;
}
bNumber = true;
long l = 0;