Fix SAL_INFO output from SetColor()
Change-Id: I65e68de95ff30b74fe7052dc4a7429d49536b564
This commit is contained in:
parent
3230aa240e
commit
8cbf109e70
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue