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
577e9009
Kaydet (Commit)
577e9009
authored
Ara 15, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
svgio: Use appropriate OUString functions on string constants
Change-Id: Idce7768fd43453703ba758d9fddf26e0b7e5cc76
üst
cfe98bd1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
7 deletions
+3
-7
svgcharacternode.cxx
svgio/source/svgreader/svgcharacternode.cxx
+1
-1
svgnode.cxx
svgio/source/svgreader/svgnode.cxx
+2
-6
No files found.
svgio/source/svgreader/svgcharacternode.cxx
Dosyayı görüntüle @
577e9009
...
...
@@ -246,7 +246,7 @@ namespace svgio
// of a SVG export with font embedding. Remove this to make font matching work. This
// is pretty safe since there should be no font family names ending on ' embedded'.
// Remove again when FontEmbedding is implemented in SVG import
if
(
aFontFamily
.
endsWith
AsciiL
(
" embedded"
,
9
))
if
(
aFontFamily
.
endsWith
(
" embedded"
))
{
aFontFamily
=
aFontFamily
.
copy
(
0
,
aFontFamily
.
getLength
()
-
9
);
}
...
...
svgio/source/svgreader/svgnode.cxx
Dosyayı görüntüle @
577e9009
...
...
@@ -59,9 +59,7 @@ namespace svgio
if
(
rId
.
getLength
())
{
const
OUString
aNewConcatenated
(
OUString
::
createFromAscii
(
"#"
)
+
rId
+
aConcatenated
);
"#"
+
rId
+
aConcatenated
);
if
(
pParent
)
{
...
...
@@ -113,9 +111,7 @@ namespace svgio
for
(
sal_uInt32
a
(
0
);
a
<
aParts
.
size
();
a
++
)
{
const
OUString
aNewConcatenated
(
OUString
::
createFromAscii
(
"."
)
+
aParts
[
a
]
+
aConcatenated
);
"."
+
aParts
[
a
]
+
aConcatenated
);
if
(
pParent
)
{
...
...
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