Fix SAL_INFO output from SetColor()

Change-Id: I65e68de95ff30b74fe7052dc4a7429d49536b564
This commit is contained in:
Tor Lillqvist 2013-01-29 23:19:30 +02:00
parent 3230aa240e
commit 8cbf109e70

View file

@ -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