summaryrefslogtreecommitdiffstats
path: root/vcl
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-01-29 23:19:30 +0200
committerTor Lillqvist <tml@iki.fi>2013-01-30 09:49:15 +0200
commit8cbf109e7050750632300d0b08ce1592464caa75 (patch)
treeff129972da96766af5fd5c8bac9ff10f8c9c401d /vcl
parentCosmetics: Consistent indentation and whitespace (diff)
downloadcore-8cbf109e7050750632300d0b08ce1592464caa75.tar.gz
core-8cbf109e7050750632300d0b08ce1592464caa75.zip
Fix SAL_INFO output from SetColor()
Change-Id: I65e68de95ff30b74fe7052dc4a7429d49536b564
Diffstat (limited to 'vcl')
-rw-r--r--vcl/coretext/salcoretextstyle.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/coretext/salcoretextstyle.cxx b/vcl/coretext/salcoretextstyle.cxx
index 5f2c15b388ea..7ec73af9ac43 100644
--- a/vcl/coretext/salcoretextstyle.cxx
+++ b/vcl/coretext/salcoretextstyle.cxx
@@ -99,7 +99,7 @@ void CoreTextStyleInfo::SetFont(FontSelectPattern* requested_font)
void CoreTextStyleInfo::SetColor(SalColor color)
{
- SAL_INFO( "vcl.coretext.style", "SetColor(" << this << ",color={" << SALCOLOR_RED(color) << "," << SALCOLOR_GREEN(color) << "," << SALCOLOR_BLUE(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