diff options
author | matteocam <matteo.campanelli@gmail.com> | 2014-05-19 12:55:40 -0400 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2014-06-30 22:54:36 +0200 |
commit | 6ffc9d1203af0a1b445d7a9d18c4f4608e078446 (patch) | |
tree | e3c013a72692b34015d2ce441451d4b2a86048f5 /editeng | |
parent | 77c5da90a6bd20f420107f767bc9e297ac9d9cfc (diff) |
Debugging options in EditCharAttribColor::SetFont
Change-Id: I44790059cffed0c124c4f30db7ea5028f0a0148d
(cherry picked from commit 1091871d3e0c9ba556f223b210584aa0425ce642)
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/editeng/editattr.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/editeng/source/editeng/editattr.cxx b/editeng/source/editeng/editattr.cxx index c18420849089..0d3fb251d800 100644 --- a/editeng/source/editeng/editattr.cxx +++ b/editeng/source/editeng/editattr.cxx @@ -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"); } |