[Libreoffice-commits] core.git: vcl/source

Miklos Vajna vmiklos at collabora.co.uk
Fri Jul 4 06:58:26 PDT 2014


 vcl/source/gdi/font.cxx |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit 61dca7f849a61daeceb68856766c43995d6794e5
Author: Miklos Vajna <vmiklos at collabora.co.uk>
Date:   Fri Jul 4 15:57:40 2014 +0200

    vcl: printf -> SAL_INFO in Font::SetFillColor
    
    Change-Id: Icbe3d7f2dc8e25bfde6efc92435f1cef50a3b419

diff --git a/vcl/source/gdi/font.cxx b/vcl/source/gdi/font.cxx
index b3daebd..a2fb925 100644
--- a/vcl/source/gdi/font.cxx
+++ b/vcl/source/gdi/font.cxx
@@ -300,8 +300,7 @@ void Font::SetFillColor( const Color& 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());
+        SAL_INFO("vcl.gdi", "I'm setting a filling (from Font) of (" << rColor.GetRed() << "," << rColor.GetGreen() << "," << rColor.GetBlue() << ")");
     }
 }
 


More information about the Libreoffice-commits mailing list