Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
dd7eeed2
Kaydet (Commit)
dd7eeed2
authored
Ock 08, 2012
tarafından
August Sodora
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove uses of pLine in scanner
üst
6b3ed4a5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
scanner.cxx
basic/source/comp/scanner.cxx
+4
-4
No files found.
basic/source/comp/scanner.cxx
Dosyayı görüntüle @
dd7eeed2
...
...
@@ -114,7 +114,7 @@ void SbiScanner::GenError( SbError code )
// used by SbiTokenizer::MayBeLabel() to detect a label
bool
SbiScanner
::
DoesColonFollow
()
{
if
(
pLine
&&
*
pLine
==
':'
)
if
(
nCol
<
aLine
.
getLength
()
&&
aLine
[
nCol
]
==
':'
)
{
pLine
++
;
nCol
++
;
return
true
;
...
...
@@ -152,7 +152,7 @@ static SbxDataType GetSuffixType( sal_Unicode c )
void
SbiScanner
::
scanAlphanumeric
()
{
sal_Int32
n
=
nCol
;
while
(
theBasicCharClass
::
get
().
isAlphaNumeric
(
*
pLine
,
bCompatible
)
||
*
pLine
==
'_'
)
while
(
nCol
<
aLine
.
getLength
()
&&
(
theBasicCharClass
::
get
().
isAlphaNumeric
(
aLine
[
nCol
],
bCompatible
)
||
aLine
[
nCol
]
==
'_'
)
)
{
pLine
++
;
nCol
++
;
...
...
@@ -242,13 +242,13 @@ bool SbiScanner::NextSym()
nCol1
=
nCol
;
// only blank line?
if
(
!*
pLine
)
if
(
nCol
>=
aLine
.
getLength
()
)
goto
eoln
;
if
(
bPrevLineExtentsComment
)
goto
PrevLineCommentLbl
;
if
(
*
pLine
==
'#'
)
if
(
nCol
<
aLine
.
getLength
()
&&
aLine
[
nCol
]
==
'#'
)
{
pLine
++
;
nCol
++
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment