diff options
author | August Sodora <augsod@gmail.com> | 2012-01-14 15:18:39 -0500 |
---|---|---|
committer | August Sodora <augsod@gmail.com> | 2012-01-14 18:39:57 -0500 |
commit | 679a8e1cfd4845634e379d0678fa1c352f7b97fd (patch) | |
tree | e507e598e1f02f0c478d1bdb4f02a069c11be215 /basic/source/comp/scanner.cxx | |
parent | 6ad9a953b9bcb29946d6d7dcb1dffc1739250184 (diff) |
Remove use of pLine in scanner
Diffstat (limited to 'basic/source/comp/scanner.cxx')
-rw-r--r-- | basic/source/comp/scanner.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/basic/source/comp/scanner.cxx b/basic/source/comp/scanner.cxx index 23599d4f95fe..f3ba9bd36667 100644 --- a/basic/source/comp/scanner.cxx +++ b/basic/source/comp/scanner.cxx @@ -26,7 +26,6 @@ * ************************************************************************/ - #include "basiccharclass.hxx" #include "sbcomp.hxx" @@ -297,7 +296,7 @@ bool SbiScanner::NextSym() { if(nCol < aLine.getLength()) { - SbxDataType t = GetSuffixType( *pLine ); + SbxDataType t(GetSuffixType(aLine[nCol])); if( t != SbxVARIANT ) { eScanType = t; |