diff options
author | Oliver Bolte <obo@openoffice.org> | 2009-09-08 10:44:42 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2009-09-08 10:44:42 +0000 |
commit | 68f578d246238871fa6c8af9595f71d396341829 (patch) | |
tree | 4f5455751a58b89cb58017255c152b5cfa162e60 /drawinglayer | |
parent | 39e949c290b8ab1e063930380a8926afb0615dd0 (diff) |
CWS-TOOLING: integrate CWS vcl104
Diffstat (limited to 'drawinglayer')
-rw-r--r-- | drawinglayer/source/processor2d/vclprocessor2d.cxx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/drawinglayer/source/processor2d/vclprocessor2d.cxx b/drawinglayer/source/processor2d/vclprocessor2d.cxx index adc33c4d676d..daf8ce5d525f 100644 --- a/drawinglayer/source/processor2d/vclprocessor2d.cxx +++ b/drawinglayer/source/processor2d/vclprocessor2d.cxx @@ -4,10 +4,6 @@ * * $RCSfile: vclprocessor2d.cxx,v $ * - * $Revision: 1.31 $ - * - * last change: $Author: aw $ $Date: 2008-06-24 15:31:09 $ - * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. * @@ -227,11 +223,13 @@ namespace drawinglayer const basegfx::BColor aTextlineColor = maBColorModifierStack.getModifiedColor(pTCPP->getTextlineColor()); mpOutputDevice->SetTextLineColor( Color(aTextlineColor) ); - // set Overline attribute + // set Overline attribute FontUnderline eFontOverline = mapTextLineStyle( pTCPP->getFontOverline() ); if( eFontOverline != UNDERLINE_NONE ) { aFont.SetOverline( eFontOverline ); + const basegfx::BColor aOverlineColor = maBColorModifierStack.getModifiedColor(pTCPP->getOverlineColor()); + mpOutputDevice->SetOverlineColor( Color(aOverlineColor) ); if( pTCPP->getWordLineMode() ) aFont.SetWordLineMode( true ); } |