diff options
Diffstat (limited to 'vcl/source/outdev/text.cxx')
-rw-r--r-- | vcl/source/outdev/text.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/outdev/text.cxx b/vcl/source/outdev/text.cxx index 435110ab5bdd..823eecb39bfe 100644 --- a/vcl/source/outdev/text.cxx +++ b/vcl/source/outdev/text.cxx @@ -728,7 +728,7 @@ void OutputDevice::SetTextColor( const Color& rColor ) } if( mpAlphaVDev ) - mpAlphaVDev->SetTextColor( COL_BLACK ); + mpAlphaVDev->SetTextColor( COL_ALPHA_OPAQUE ); } void OutputDevice::SetTextFillColor() @@ -760,7 +760,7 @@ void OutputDevice::SetTextFillColor( const Color& rColor ) maFont.SetTransparent( rColor.IsTransparent() ); if( mpAlphaVDev ) - mpAlphaVDev->SetTextFillColor( COL_BLACK ); + mpAlphaVDev->SetTextFillColor( COL_ALPHA_OPAQUE ); } Color OutputDevice::GetTextFillColor() const |