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
71dba79c
Kaydet (Commit)
71dba79c
authored
Haz 25, 2015
tarafından
Eike Rathke
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
tdf#44419 in second reference part stop number parsing at separator
Change-Id: I70218bc41df0d56ab42d652aa7ac51733dc06f4b
üst
3b1cb077
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
compiler.cxx
sc/source/core/tool/compiler.cxx
+12
-0
No files found.
sc/source/core/tool/compiler.cxx
Dosyayı görüntüle @
71dba79c
...
@@ -2483,6 +2483,18 @@ Label_MaskStateMachine:
...
@@ -2483,6 +2483,18 @@ Label_MaskStateMachine:
}
}
else
else
{
{
// When having parsed a second reference part, ensure that the
// i18n parser did not mistakingly parse a number that included
// a separator which happened to be meant as a parameter
// separator instead.
if
(
mnRangeOpPosInSymbol
>=
0
&&
(
aRes
.
TokenType
&
KParseType
::
ASC_NUMBER
))
{
for
(
sal_Int32
i
=
nSrcPos
;
i
<
aRes
.
EndPos
;
++
i
)
{
if
(
pStart
[
i
]
==
cSep
)
aRes
.
EndPos
=
i
;
// also ends for
}
}
aSymbol
.
append
(
pStart
+
nSrcPos
,
aRes
.
EndPos
-
nSrcPos
);
aSymbol
.
append
(
pStart
+
nSrcPos
,
aRes
.
EndPos
-
nSrcPos
);
nSrcPos
=
aRes
.
EndPos
;
nSrcPos
=
aRes
.
EndPos
;
c
=
pStart
[
nSrcPos
];
c
=
pStart
[
nSrcPos
];
...
...
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