From 7b59e44925b4c46e682661f5468d7aa2d7d3231d Mon Sep 17 00:00:00 2001 From: matteocam Date: Wed, 28 May 2014 17:11:18 -0400 Subject: Cleaned up code from tranparency in vcl. Trying setfillcolor from edit attrs Change-Id: I263012332e43573f260ac8c54612576eb21a11a1 (cherry picked from commit 02385eb4d8de3c5a57511d8bae3c42a523470838) --- editeng/source/editeng/editattr.cxx | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'editeng') 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); } -- cgit