summaryrefslogtreecommitdiff
path: root/vcl/source/gdi/font.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/gdi/font.cxx')
-rw-r--r--vcl/source/gdi/font.cxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/vcl/source/gdi/font.cxx b/vcl/source/gdi/font.cxx
index 616fb61ca96f..f223d7b428b5 100644
--- a/vcl/source/gdi/font.cxx
+++ b/vcl/source/gdi/font.cxx
@@ -299,11 +299,15 @@ void Font::SetFillColor( const Color& rColor )
mpImplFont->maFillColor = rColor;
if ( rColor.GetTransparency() )
mpImplFont->mbTransparent = true;
+ if (GetUnderline() == UNDERLINE_SINGLE ) {
+ fprintf(stderr, "I'm setting a filling (from Font) of (%d,%d,%d) \n",
+ rColor.GetRed(), rColor.GetGreen(), rColor.GetBlue());
+ }
}
void Font::SetBackgroundColor(const Color& rColor)
{
- // FIXME
+ // FIXME(matteocam)
//MakeUnique();
/*mpImplFont->maBkgColor = rColor;
if () */