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
073be3ab
Kaydet (Commit)
073be3ab
authored
May 31, 2014
tarafından
matteocam
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added case in editdoc.cxx
Change-Id: I572d79dfd770eaa13d24b27f1c689a059cb79153
üst
8fd668c4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
6 deletions
+13
-6
editattr.cxx
editeng/source/editeng/editattr.cxx
+6
-5
editdoc.cxx
editeng/source/editeng/editdoc.cxx
+5
-0
eeitem.hxx
include/editeng/eeitem.hxx
+2
-1
No files found.
editeng/source/editeng/editattr.cxx
Dosyayı görüntüle @
073be3ab
...
...
@@ -131,13 +131,14 @@ void EditCharAttribUnderline::SetFont( SvxFont& rFont, OutputDevice* pOutDev )
Color
aColor
=
RGB_COLORDATA
(
0x66
,
0x66
,
0xFF
);
// blue-ish
rFont
.
SetUnderline
(
(
FontUnderline
)((
const
SvxUnderlineItem
*
)
GetItem
())
->
GetValue
()
);
if
(
pOutDev
)
// FIXME(matteocam)
pOutDev
->
SetTextLineColor
(
aColor
);
//pOutDev->SetTextLineColor( ((const SvxUnderlineItem*)GetItem())->GetColor() );
// FIXME(matteocam)
/* FIXME(matteocam) */
rFont
.
SetFillColor
(
aColor
);
// end FIXME
if
(
pOutDev
)
pOutDev
->
SetTextFillColor
(
aColor
);
pOutDev
->
SetTextLineColor
(
((
const
SvxUnderlineItem
*
)
GetItem
())
->
GetColor
()
);
}
...
...
editeng/source/editeng/editdoc.cxx
Dosyayı görüntüle @
073be3ab
...
...
@@ -404,6 +404,11 @@ EditCharAttrib* MakeCharAttrib( SfxItemPool& rPool, const SfxPoolItem& rAttr, sa
pNew
=
new
EditCharAttribField
(
(
const
SvxFieldItem
&
)
rNew
,
nS
);
}
break
;
case
EE_CHAR_BKGCOLOR
:
{
pNew
=
new
EditCharAttribBackgroundColor
(
(
const
SvxBackgroundColorItem
&
)
rNew
,
nS
,
nE
);
}
break
;
default:
{
OSL_FAIL
(
"Invalid Attribute!"
);
...
...
include/editeng/eeitem.hxx
Dosyayı görüntüle @
073be3ab
...
...
@@ -24,7 +24,8 @@
/*
* NOTE: Changes in this file will probably require
* consistent changes in eerdll.cxx as well.
* consistent changes in eerdll.cxx and editdoc.cxx
* as well.
*/
#define EE_ITEMS_START (OWN_ATTR_VALUE_END+1)
...
...
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