Kaydet (Commit) 8cbf109e authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Fix SAL_INFO output from SetColor()

Change-Id: I65e68de95ff30b74fe7052dc4a7429d49536b564
üst 3230aa24
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment