diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-07-07 09:08:23 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-07-09 11:06:19 +0200 |
commit | 1501da01092d4ad4e5f3c8499fd8d1e18f87bc0c (patch) | |
tree | 38ddfacf96c179b45a9bcf8789d2f63afb29aea4 /cppcanvas | |
parent | 7af90cc93b76996f0f338c6a1285997531281e75 (diff) |
loplugin:oncevar
Change-Id: Id295dc0db174a448ef73db9de34f2de07d47f09a
Reviewed-on: https://gerrit.libreoffice.org/57108
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'cppcanvas')
-rw-r--r-- | cppcanvas/source/mtfrenderer/textaction.cxx | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/cppcanvas/source/mtfrenderer/textaction.cxx b/cppcanvas/source/mtfrenderer/textaction.cxx index 41c2f4ac3557..c6f9c8ef0a41 100644 --- a/cppcanvas/source/mtfrenderer/textaction.cxx +++ b/cppcanvas/source/mtfrenderer/textaction.cxx @@ -917,8 +917,7 @@ namespace cppcanvas rRenderState ); //rhbz#1589029 non-transparent text fill background support - ::Color aEmptyColor( COL_AUTO ); - if (rTextFillColor != aEmptyColor) + if (rTextFillColor != COL_AUTO) { rendering::RenderState aLocalState( rRenderState ); aLocalState.DeviceColor = vcl::unotools::colorToDoubleSequence( @@ -1380,8 +1379,7 @@ namespace cppcanvas rRenderState ); //rhbz#1589029 non-transparent text fill background support - ::Color aEmptyColor( COL_AUTO ); - if (rTextFillColor != aEmptyColor) + if (rTextFillColor != COL_AUTO) { rendering::RenderState aLocalState(rRenderState); aLocalState.DeviceColor = vcl::unotools::colorToDoubleSequence( @@ -1438,8 +1436,7 @@ namespace cppcanvas rRenderState ); //rhbz#1589029 non-transparent text fill background support - ::Color aEmptyColor( COL_AUTO ); - if (rTextFillColor != aEmptyColor) + if (rTextFillColor != COL_AUTO) { rendering::RenderState aLocalState(rRenderState); aLocalState.DeviceColor = vcl::unotools::colorToDoubleSequence( |