summaryrefslogtreecommitdiff
path: root/canvas
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-21 22:14:59 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-22 08:22:34 +0100
commita586ee94bbcc5f68d510f609000c8e741532cc7b (patch)
treed5bf6a8920e7fe5b39015cf53ec09d34e5177adb /canvas
parent0e5c7d0b5bdf0f20e67b3ed65a4199107e58bffa (diff)
bool improvements
Change-Id: Ic02ccfcadc1a82f489280304ce1180c86aaa3a63
Diffstat (limited to 'canvas')
-rw-r--r--canvas/source/vcl/canvashelper_texturefill.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/canvas/source/vcl/canvashelper_texturefill.cxx b/canvas/source/vcl/canvashelper_texturefill.cxx
index 2da3dc607ae8..455a474aeebe 100644
--- a/canvas/source/vcl/canvashelper_texturefill.cxx
+++ b/canvas/source/vcl/canvashelper_texturefill.cxx
@@ -91,10 +91,10 @@ namespace vclcanvas
{
// update return value. This method should return true, if
// at least one of the looped Draws succeeded.
- bRet |= ( sal_True == rGraphic.Draw( &rOutDev,
+ bRet |= rGraphic.Draw( &rOutDev,
aCurrPos,
rTileSize,
- &rAttr ) );
+ &rAttr );
aCurrPos.X() += rNextTileX.Width();
aCurrPos.Y() += rNextTileX.Height();