Kaydet (Commit) 2bcaa1ca authored tarafından matteocam's avatar matteocam

DbgOutItem supports Font Background Color

Change-Id: I1067e73593fdd116c3fc264b07f8bfd77057af0f
üst a7f27d46
...@@ -177,6 +177,17 @@ OString DbgOutItem(const SfxItemPool& rPool, const SfxPoolItem& rItem) ...@@ -177,6 +177,17 @@ OString DbgOutItem(const SfxItemPool& rPool, const SfxPoolItem& rItem)
aDebStr.append(static_cast<sal_Int32>(aColor.GetBlue())); aDebStr.append(static_cast<sal_Int32>(aColor.GetBlue()));
} }
break; break;
case EE_CHAR_BKGCOLOR:
{
aDebStr.append("FillColor= ");
Color aColor( ((SvxColorBackgroundItem&)rItem).GetValue() );
aDebStr.append(static_cast<sal_Int32>(aColor.GetRed()));
aDebStr.append(", ");
aDebStr.append(static_cast<sal_Int32>(aColor.GetGreen()));
aDebStr.append(", ");
aDebStr.append(static_cast<sal_Int32>(aColor.GetBlue()));
}
break;
case EE_CHAR_FONTINFO: case EE_CHAR_FONTINFO:
case EE_CHAR_FONTINFO_CJK: case EE_CHAR_FONTINFO_CJK:
case EE_CHAR_FONTINFO_CTL: case EE_CHAR_FONTINFO_CTL:
......
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