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
48eccfb8
Kaydet (Commit)
48eccfb8
authored
May 16, 2014
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fdo#77537: Exporting font names in edit text needs special handling.
Change-Id: Ia9c29d37eaf962e0245920e50f534dd779af72dc
üst
90f7bd61
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
xmlexprt.cxx
sc/source/filter/xml/xmlexprt.cxx
+11
-3
No files found.
sc/source/filter/xml/xmlexprt.cxx
Dosyayı görüntüle @
48eccfb8
...
@@ -1116,10 +1116,18 @@ const SvxFieldData* toXMLPropertyStates(
...
@@ -1116,10 +1116,18 @@ const SvxFieldData* toXMLPropertyStates(
case
EE_CHAR_FONTINFO_CJK
:
case
EE_CHAR_FONTINFO_CJK
:
case
EE_CHAR_FONTINFO_CTL
:
case
EE_CHAR_FONTINFO_CTL
:
{
{
if
(
!
static_cast
<
const
SvxFontItem
*>
(
p
)
->
QueryValue
(
aAny
,
pEntry
->
mnFlag
))
// Apparently font info needs special handling.
continue
;
const
SvxFontItem
*
pItem
=
static_cast
<
const
SvxFontItem
*>
(
p
)
;
rPropStates
.
push_back
(
XMLPropertyState
(
nIndex
,
aAny
));
sal_Int32
nIndexFontName
=
xMapper
->
GetEntryIndex
(
XML_NAMESPACE_STYLE
,
"font-name"
,
0
);
if
(
nIndexFontName
==
-
1
||
nIndexFontName
>=
nEntryCount
)
break
;
if
(
!
pItem
->
QueryValue
(
aAny
,
MID_FONT_FAMILY_NAME
))
break
;
rPropStates
.
push_back
(
XMLPropertyState
(
nIndexFontName
,
aAny
));
}
}
break
;
break
;
case
EE_CHAR_WEIGHT
:
case
EE_CHAR_WEIGHT
:
...
...
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