From 59a2e1b9fa8663254550838c0c44d0cac290105f Mon Sep 17 00:00:00 2001 From: matteocam Date: Mon, 30 Jun 2014 14:41:37 -0400 Subject: Cleanup: removed comments and debugging output Change-Id: I41f13d33da641153784725344f5bd526ca69542b --- vcl/source/outdev/text.cxx | 20 -------------------- 1 file changed, 20 deletions(-) (limited to 'vcl/source/outdev') diff --git a/vcl/source/outdev/text.cxx b/vcl/source/outdev/text.cxx index 3fd6500f7951..7b955666f068 100644 --- a/vcl/source/outdev/text.cxx +++ b/vcl/source/outdev/text.cxx @@ -742,12 +742,6 @@ void OutputDevice::SetTextFillColor() mpMetaFile->AddAction( new MetaTextFillColorAction( Color(), false ) ); if ( maFont.GetColor() != Color( COL_TRANSPARENT ) ) { - // FIXME(matteocam) - Color aColor = maFont.GetColor(); - if (aColor.GetRed() == 0x66) { - fprintf(stderr, "OutputDevice::SetTextFillColor() changing blue to transparent\n "); - } - // end modified code maFont.SetFillColor( Color( COL_TRANSPARENT ) ); } if ( !maFont.IsTransparent() ) @@ -763,14 +757,6 @@ void OutputDevice::SetTextFillColor( const Color& rColor ) Color aColor( rColor ); bool bTransFill = ImplIsColorTransparent( aColor ); - // FIXME(matteocam) - if ( rColor.GetRed() == 0x66 ) { // component of the blue I use - fprintf(stderr, "OutputDevice::SetTextFillColor(Color &): called with (%d, %d, %d)\n", - rColor.GetRed(), rColor.GetGreen(), rColor.GetBlue()); - } - - // end modified code - if ( !bTransFill ) { if ( mnDrawMode & ( DRAWMODE_BLACKFILL | DRAWMODE_WHITEFILL | @@ -966,12 +952,6 @@ void OutputDevice::DrawTextArray( const Point& rStartPt, const OUString& rStr, const sal_Int32* pDXAry, sal_Int32 nIndex, sal_Int32 nLen ) { - if ( maFont.IsTransparent() ) - fprintf(stderr, "[Actually transparent font] Real color = %x\n", maFont.GetFillColor().GetColor() ); - fprintf(stderr, "TextFillColor printing %c is %x\n", - (char) rStr.toChar(), - GetTextFillColor().GetColor()); - if(nLen == 0x0FFFF) { SAL_INFO("sal.rtl.xub", -- cgit