Kaydet (Commit) 61dca7f8 authored tarafından Miklos Vajna's avatar Miklos Vajna

vcl: printf -> SAL_INFO in Font::SetFillColor

Change-Id: Icbe3d7f2dc8e25bfde6efc92435f1cef50a3b419
üst 6cad548e
...@@ -300,8 +300,7 @@ void Font::SetFillColor( const Color& rColor ) ...@@ -300,8 +300,7 @@ void Font::SetFillColor( const Color& rColor )
if ( rColor.GetTransparency() ) if ( rColor.GetTransparency() )
mpImplFont->mbTransparent = true; mpImplFont->mbTransparent = true;
if (GetUnderline() == UNDERLINE_SINGLE ) { if (GetUnderline() == UNDERLINE_SINGLE ) {
fprintf(stderr, "I'm setting a filling (from Font) of (%d,%d,%d) \n", SAL_INFO("vcl.gdi", "I'm setting a filling (from Font) of (" << rColor.GetRed() << "," << rColor.GetGreen() << "," << rColor.GetBlue() << ")");
rColor.GetRed(), rColor.GetGreen(), rColor.GetBlue());
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment