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
0f47de0c
Kaydet (Commit)
0f47de0c
authored
Tem 22, 2014
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix the font handling esp wrt font colors.
Change-Id: I7dda03368f67ea6a12dfb39115f4546277abb76b
üst
196abcf8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
editdoc.cxx
editeng/source/editeng/editdoc.cxx
+1
-1
editeng.cxx
editeng/source/editeng/editeng.cxx
+1
-1
No files found.
editeng/source/editeng/editdoc.cxx
Dosyayı görüntüle @
0f47de0c
...
...
@@ -1908,7 +1908,7 @@ void CreateFont( SvxFont& rFont, const SfxItemSet& rSet, bool bSearchInParent, s
if
(
bSearchInParent
||
(
rSet
.
GetItemState
(
EE_CHAR_COLOR
)
==
SFX_ITEM_ON
)
)
rFont
.
SetColor
(
((
const
SvxColorItem
&
)
rSet
.
Get
(
EE_CHAR_COLOR
)).
GetValue
()
);
if
(
bSearchInParent
||
(
rSet
.
GetItemState
(
EE_CHAR_BKGCOLOR
)
==
SFX_ITEM_ON
)
)
rFont
.
SetColor
(
((
const
SvxBackgroundColorItem
&
)
rSet
.
Get
(
EE_CHAR_BKGCOLOR
)).
GetValue
()
);
rFont
.
Set
Fill
Color
(
((
const
SvxBackgroundColorItem
&
)
rSet
.
Get
(
EE_CHAR_BKGCOLOR
)).
GetValue
()
);
if
(
bSearchInParent
||
(
rSet
.
GetItemState
(
nWhich_FontHeight
)
==
SFX_ITEM_ON
)
)
rFont
.
SetSize
(
Size
(
rFont
.
GetSize
().
Width
(),
((
const
SvxFontHeightItem
&
)
rSet
.
Get
(
nWhich_FontHeight
)
).
GetHeight
()
)
);
if
(
bSearchInParent
||
(
rSet
.
GetItemState
(
nWhich_Weight
)
==
SFX_ITEM_ON
)
)
...
...
editeng/source/editeng/editeng.cxx
Dosyayı görüntüle @
0f47de0c
...
...
@@ -2600,7 +2600,7 @@ void EditEngine::SetFontInfoInItemSet( SfxItemSet& rSet, const SvxFont& rFont )
rSet
.
Put
(
SvxEscapementItem
(
rFont
.
GetEscapement
(),
rFont
.
GetPropr
(),
EE_CHAR_ESCAPEMENT
)
);
rSet
.
Put
(
SvxWeightItem
(
rFont
.
GetWeight
(),
EE_CHAR_WEIGHT
)
);
rSet
.
Put
(
SvxColorItem
(
rFont
.
GetColor
(),
EE_CHAR_COLOR
)
);
rSet
.
Put
(
SvxBackgroundColorItem
(
rFont
.
GetFillColor
(),
EE_CHAR_COLOR
)
);
rSet
.
Put
(
SvxBackgroundColorItem
(
rFont
.
GetFillColor
(),
EE_CHAR_
BKG
COLOR
)
);
rSet
.
Put
(
SvxUnderlineItem
(
rFont
.
GetUnderline
(),
EE_CHAR_UNDERLINE
)
);
rSet
.
Put
(
SvxOverlineItem
(
rFont
.
GetOverline
(),
EE_CHAR_OVERLINE
)
);
rSet
.
Put
(
SvxCrossedOutItem
(
rFont
.
GetStrikeout
(),
EE_CHAR_STRIKEOUT
)
);
...
...
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