summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authormatteocam <matteo.campanelli@gmail.com>2014-05-22 16:18:29 -0400
committerFridrich Štrba <fridrich.strba@bluewin.ch>2014-06-30 22:54:37 +0200
commit039599e9d52461ea57a9690f847bbfe5bae6f3aa (patch)
tree0ffd35df6c6c6f62202bee8cbc23773152b8b663 /editeng
parentd097bc8e156b50a4fd04dd82c42efa2921f0e886 (diff)
Put text filling in SvxFont
Change-Id: I290fff0cb66fc07122b976d977dff24ac491e108 (cherry picked from commit ea56441757a34082b9ffc5f28936413fcb55e31a)
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/items/svxfont.cxx7
1 files changed, 7 insertions, 0 deletions
diff --git a/editeng/source/items/svxfont.cxx b/editeng/source/items/svxfont.cxx
index 895eef60291c..e9f2a710623f 100644
--- a/editeng/source/items/svxfont.cxx
+++ b/editeng/source/items/svxfont.cxx
@@ -457,9 +457,16 @@ void SvxFont::QuickDrawText( OutputDevice *pOut,
const sal_Int32 nIdx, const sal_Int32 nLen, const sal_Int32* pDXArray ) const
{
+ fprintf(stderr, "About to print %s\n", rTxt.getStr());
+
// Font has to be selected in OutputDevice...
if ( !IsCaseMap() && !IsCapital() && !IsKern() && !IsEsc() )
{
+ // set right background
+ if ( HasBackgroundColor() ) {
+ Color aColor = COL_RED;
+ pOut->SetTextFillColor(aColor);
+ }
pOut->DrawTextArray( rPos, rTxt, pDXArray, nIdx, nLen );
return;
}