summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@suse.cz>2011-12-27 22:25:36 +0100
committerJan Holesovsky <kendy@suse.cz>2011-12-27 22:25:36 +0100
commitc60740a010cad96dd6a77ade90d8c1ed013b30fd (patch)
tree83cc6bb7a2edc7920953f54d49a9087985082b5d /vcl
parent6095326517e05513085f379055e86b5d3c0270fd (diff)
Fix drawing of the either horizontally, or vertically mirrored bitmaps.
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/gdi/outdev2.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/gdi/outdev2.cxx b/vcl/source/gdi/outdev2.cxx
index d40536786576..d8d847edd4ec 100644
--- a/vcl/source/gdi/outdev2.cxx
+++ b/vcl/source/gdi/outdev2.cxx
@@ -1821,7 +1821,7 @@ Bitmap OutputDevice::ImplBlend( Bitmap aBmp,
aTR.mnDestWidth = aOutSz.Width();
aTR.mnDestHeight= aOutSz.Height();
- if( !bHMirr || !bVMirr )
+ if( !bHMirr && !bVMirr )
bFastBlend = ImplFastBitmapBlending( *pB,*pP,*pA, aTR );
}