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
019a8f3f
Kaydet (Commit)
019a8f3f
authored
Tem 11, 2013
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Resolves: fdo#66524 string conversion gone wrong
Change-Id: Ie885514cdfaecc14ac57bb53a2da7c51274d54b0
üst
21b2b1c0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
fontcache.cxx
vcl/generic/fontmanager/fontcache.cxx
+4
-4
No files found.
vcl/generic/fontmanager/fontcache.cxx
Dosyayı görüntüle @
019a8f3f
...
@@ -264,10 +264,10 @@ void FontCache::read()
...
@@ -264,10 +264,10 @@ void FontCache::read()
do
do
{
{
aStream
.
ReadLine
(
aLine
);
aStream
.
ReadLine
(
aLine
);
if
(
aLine
==
"FontCacheDirectory:"
||
if
(
aLine
.
startsWith
(
"FontCacheDirectory:"
)
||
aLine
==
"EmptyFontCacheDirectory:"
)
aLine
.
startsWith
(
"EmptyFontCacheDirectory:"
)
)
{
{
bool
bEmpty
=
(
aLine
==
"Empty"
);
bool
bEmpty
=
aLine
.
startsWith
(
"Empty"
);
sal_Int32
nSearchIndex
=
bEmpty
?
24
:
19
;
sal_Int32
nSearchIndex
=
bEmpty
?
24
:
19
;
OString
aDir
;
OString
aDir
;
...
@@ -309,7 +309,7 @@ void FontCache::read()
...
@@ -309,7 +309,7 @@ void FontCache::read()
m_aCache
[
nDir
].
m_bUserOverrideOnly
=
bKeepOnlyUserOverridden
;
m_aCache
[
nDir
].
m_bUserOverrideOnly
=
bKeepOnlyUserOverridden
;
}
}
}
}
else
if
(
pDir
&&
aLine
==
"File:"
)
else
if
(
pDir
&&
aLine
.
startsWith
(
"File:"
)
)
{
{
OString
aFile
(
aLine
.
copy
(
5
)
);
OString
aFile
(
aLine
.
copy
(
5
)
);
aStream
.
ReadLine
(
aLine
);
aStream
.
ReadLine
(
aLine
);
...
...
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