From 1e9082ecf8c1f6ba757812cd8b6d14b24150a055 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Mon, 8 Apr 2013 00:49:46 +0300 Subject: Bin some pointless SAL_INFOs Change-Id: I5ef28eaac8eacd24f209617d68dfa23e0388bb1a --- vcl/coretext/salcoretextstyle.cxx | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'vcl') diff --git a/vcl/coretext/salcoretextstyle.cxx b/vcl/coretext/salcoretextstyle.cxx index d01846a186ca..a4297380780f 100644 --- a/vcl/coretext/salcoretextstyle.cxx +++ b/vcl/coretext/salcoretextstyle.cxx @@ -37,7 +37,7 @@ CoreTextStyleInfo::CoreTextStyleInfo() : CoreTextStyleInfo::~CoreTextStyleInfo() { - SAL_INFO( "vcl.coretext.style", "~CoreTextStyleInfo(" << this << "), font=" << m_CTFont ); + SAL_INFO( "vcl.coretext.style", "~CoreTextStyleInfo(" << this << ")" ); SafeCFRelease(m_CTFont); SafeCFRelease(m_CTParagraphStyle); @@ -52,8 +52,6 @@ long CoreTextStyleInfo::GetFontStretchedSize() const void CoreTextStyleInfo::SetFont(FontSelectPattern* requested_font) { - SAL_INFO( "vcl.coretext.style", "SetFont(" << this ); - if(!requested_font) { SafeCFRelease(m_CTFont); @@ -93,14 +91,10 @@ void CoreTextStyleInfo::SetFont(FontSelectPattern* requested_font) /* FIXME: pass attribute to take into accout 'VerticalStyle' */ /* FIXME: how to deal with 'rendering options' i.e anti-aliasing, does it even matter in CoreText ? */ m_CTFont = CTFontCreateCopyWithAttributes(m_font_face->GetCTFont(), font_size, &m_matrix, NULL); - - SAL_INFO( "vcl.coretext.style", " font=" << m_CTFont ); } void CoreTextStyleInfo::SetColor(SalColor color) { - SAL_INFO( "vcl.coretext.style", "SetColor(" << this << ",color={" << (int)SALCOLOR_RED(color) << "," << (int)SALCOLOR_GREEN(color) << "," << (int)SALCOLOR_BLUE(color) << "})" ); - SafeCFRelease(m_color); #ifdef IOS // No CGColorCreateGenericRGB on iOS @@ -115,8 +109,6 @@ void CoreTextStyleInfo::SetColor(SalColor color) void CoreTextStyleInfo::SetColor(void) { - SAL_INFO( "vcl.coretext.style", "SetColor(" << this << ",none)" ); - SafeCFRelease(m_color); } -- cgit