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
543b432f
Kaydet (Commit)
543b432f
authored
Şub 26, 2015
tarafından
Michael Stahl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
18npool: these variables should be signed
Change-Id: I6519a4c9da2a95efcc54288b3ef9d0a19ccfef3c
üst
802fe487
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
10 deletions
+5
-10
transliteration_commonclass.cxx
...ol/source/transliteration/transliteration_commonclass.cxx
+5
-10
No files found.
i18npool/source/transliteration/transliteration_commonclass.cxx
Dosyayı görüntüle @
543b432f
...
...
@@ -80,24 +80,19 @@ transliteration_commonclass::compareSubstring(
const
OUString
&
str2
,
sal_Int32
off2
,
sal_Int32
len2
)
throw
(
RuntimeException
,
std
::
exception
)
{
const
sal_Unicode
*
unistr1
=
NULL
;
const
sal_Unicode
*
unistr2
=
NULL
;
sal_uInt32
strlen1
;
sal_uInt32
strlen2
;
Sequence
<
sal_Int32
>
offset1
(
2
*
len1
);
Sequence
<
sal_Int32
>
offset2
(
2
*
len2
);
OUString
in_str1
=
this
->
transliterate
(
str1
,
off1
,
len1
,
offset1
);
OUString
in_str2
=
this
->
transliterate
(
str2
,
off2
,
len2
,
offset2
);
strlen1
=
in_str1
.
getLength
();
strlen2
=
in_str2
.
getLength
();
unistr1
=
in_str1
.
getStr
();
unistr2
=
in_str2
.
getStr
();
s
al_Int32
s
trlen1
=
in_str1
.
getLength
();
s
al_Int32
s
trlen2
=
in_str2
.
getLength
();
const
sal_Unicode
*
unistr1
=
in_str1
.
getStr
();
const
sal_Unicode
*
unistr2
=
in_str2
.
getStr
();
while
(
strlen1
&&
strlen2
)
{
sal_
u
Int32
ret
=
*
unistr1
-
*
unistr2
;
sal_Int32
ret
=
*
unistr1
-
*
unistr2
;
if
(
ret
)
return
ret
;
...
...
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