diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-04-24 15:39:51 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-04-24 15:44:37 +0100 |
commit | bc069413e54ae9626298f337b180dd4f142f4776 (patch) | |
tree | b4345575cba5363c26523cae441dab64d17e1c97 /basic/source | |
parent | 17d08197761567f72f8b58c8aa71bac31701968e (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/source')
-rw-r--r-- | basic/source/comp/scanner.cxx | 2 |
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; |