summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authormatteocam <matteo.campanelli@gmail.com>2014-05-28 17:11:18 -0400
committerFridrich Štrba <fridrich.strba@bluewin.ch>2014-06-30 22:54:39 +0200
commit7b59e44925b4c46e682661f5468d7aa2d7d3231d (patch)
tree3f2c4e1f8351066200742c52504aa9899531bab5 /editeng
parentbe34ea6f62a357eaaab01ce14e2882528015e1d1 (diff)
Cleaned up code from tranparency in vcl. Trying setfillcolor from edit attrs
Change-Id: I263012332e43573f260ac8c54612576eb21a11a1 (cherry picked from commit 02385eb4d8de3c5a57511d8bae3c42a523470838)
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/editeng/editattr.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/editeng/source/editeng/editattr.cxx b/editeng/source/editeng/editattr.cxx
index 2e3097eaac17..c7eab83e40fa 100644
--- a/editeng/source/editeng/editattr.cxx
+++ b/editeng/source/editeng/editattr.cxx
@@ -131,6 +131,11 @@ void EditCharAttribUnderline::SetFont( SvxFont& rFont, OutputDevice* pOutDev )
rFont.SetUnderline( (FontUnderline)((const SvxUnderlineItem*)GetItem())->GetValue() );
if ( pOutDev )
pOutDev->SetTextLineColor( ((const SvxUnderlineItem*)GetItem())->GetColor() );
+
+ // FIXME(matteocam)
+ Color aColor = RGB_COLORDATA(0x66,0x66, 0xFF); // blue-ish
+ if ( pOutDev )
+ pOutDev->SetTextFillColor(aColor);
}