Kaydet (Commit) 1091871d authored tarafından matteocam's avatar matteocam

Debugging options in EditCharAttribColor::SetFont

Change-Id: I44790059cffed0c124c4f30db7ea5028f0a0148d
üst ee43de69
......@@ -217,7 +217,9 @@ EditCharAttribColor::EditCharAttribColor( const SvxColorItem& rAttr, sal_uInt16
void EditCharAttribColor::SetFont( SvxFont& rFont, OutputDevice* )
{
rFont.SetColor( ((const SvxColorItem*)GetItem())->GetValue() );
Color aColor = ((const SvxColorItem*)GetItem())->GetValue();
rFont.SetColor( aColor);
fprintf(stderr, "Called SetFont\n");
}
......
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