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
4b7d3395
Kaydet (Commit)
4b7d3395
authored
Kas 17, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Don't assume sal_Unicode is unsigned short
Change-Id: I721f53d79cd3e2c24542382d519a909a86a31111
üst
6e6c0951
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
indexentrysupplier_asian.cxx
i18npool/source/indexentry/indexentrysupplier_asian.cxx
+1
-1
localebackend.cxx
shell/source/backends/localebe/localebackend.cxx
+1
-1
No files found.
i18npool/source/indexentry/indexentrysupplier_asian.cxx
Dosyayı görüntüle @
4b7d3395
...
@@ -196,7 +196,7 @@ IndexEntrySupplier_asian::getPhoneticCandidate( const OUString& rIndexEntry,
...
@@ -196,7 +196,7 @@ IndexEntrySupplier_asian::getPhoneticCandidate( const OUString& rIndexEntry,
candidate
.
append
(
candidate
.
append
(
reinterpret_cast
<
sal_Unicode
*>
(
&
idx
[
2
][
address
]));
reinterpret_cast
<
sal_Unicode
*>
(
&
idx
[
2
][
address
]));
else
else
candidate
.
append
(
address
);
candidate
.
append
(
sal_Unicode
(
address
)
);
}
else
}
else
candidate
.
append
(
" "
);
candidate
.
append
(
" "
);
}
}
...
...
shell/source/backends/localebe/localebackend.cxx
Dosyayı görüntüle @
4b7d3395
...
@@ -70,7 +70,7 @@ namespace /* private */
...
@@ -70,7 +70,7 @@ namespace /* private */
{
{
CFIndex
lstr
=
CFStringGetLength
(
s
);
CFIndex
lstr
=
CFStringGetLength
(
s
);
for
(
CFIndex
i
=
0
;
i
<
lstr
;
i
++
)
for
(
CFIndex
i
=
0
;
i
<
lstr
;
i
++
)
buffer
.
append
(
CFStringGetCharacterAtIndex
(
s
,
i
));
buffer
.
append
(
sal_Unicode
(
CFStringGetCharacterAtIndex
(
s
,
i
)
));
}
}
template
<
typename
T
>
template
<
typename
T
>
...
...
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