diff options
author | matteocam <matteo.campanelli@gmail.com> | 2014-06-17 16:17:47 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2014-06-30 22:54:43 +0200 |
commit | 2727a6dbf46fad3301ab0f24dce7da50976212f4 (patch) | |
tree | e7ee886ad6de71ac90c915cbeb25a6a811ff3aa2 /svx/source | |
parent | 64de49e9b26b7a65e63c24e930ef7e42372d26ba (diff) |
Changed BColor to Color in TextFooPrimitive2D classes
Change-Id: I4f29ec307f7f86e0a43d661785f90601e24a16ce
(cherry picked from commit 530db75780c0c7711e1e334e6968cd357bf3d5a0)
Diffstat (limited to 'svx/source')
-rw-r--r-- | svx/source/svdraw/svdotextdecomposition.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/svx/source/svdraw/svdotextdecomposition.cxx b/svx/source/svdraw/svdotextdecomposition.cxx index cb49a50831d3..2f7c4e1dfede 100644 --- a/svx/source/svdraw/svdotextdecomposition.cxx +++ b/svx/source/svdraw/svdotextdecomposition.cxx @@ -260,7 +260,6 @@ namespace const basegfx::BColor aBFontColor(aFontColor.getBColor()); const Color aTextFillColor(rInfo.mrFont.GetFillColor()); - const basegfx::BColor aBTextFillColor(aTextFillColor.getBColor()); // prepare wordLineMode (for underline and strikeout) // NOT for bullet texts. It is set (this may be an error by itself), but needs to be suppressed to hinder e.g. '1)' @@ -340,7 +339,7 @@ namespace aFontAttribute, rInfo.mpLocale ? *rInfo.mpLocale : ::com::sun::star::lang::Locale(), aBFontColor, - aBTextFillColor, + aTextFillColor, // attributes for TextDecoratedPortionPrimitive2D aBOverlineColor, @@ -370,7 +369,7 @@ namespace aBFontColor, rInfo.mbFilled, rInfo.mnWidthToFill, - aBTextFillColor); + aTextFillColor); } if(rInfo.mbEndOfBullet) |