diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-04-08 00:49:46 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-04-08 02:14:18 +0300 |
commit | 1e9082ecf8c1f6ba757812cd8b6d14b24150a055 (patch) | |
tree | 7cb81eb0160d4973050329361b4233423fb012df /vcl | |
parent | 924856e9133ff7df0e6dbad8aba2688adcbe54d9 (diff) |
Bin some pointless SAL_INFOs
Change-Id: I5ef28eaac8eacd24f209617d68dfa23e0388bb1a
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/coretext/salcoretextstyle.cxx | 10 |
1 files changed, 1 insertions, 9 deletions
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); } |