summaryrefslogtreecommitdiff
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:30:51 +0100
commite0e52ce536f6b4b69280d41d77fc6d43d23958f3 (patch)
tree2d6e7d7a7c7ba50236e546235e569eb33ddd1f5f
parent640c1788efe181bbf834fb78ebb3c08820847a7e (diff)
Fix drawing of the either horizontally, or vertically mirrored bitmaps.
-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 3ee7254d067f..329f5f44962e 100644
--- a/vcl/source/gdi/outdev2.cxx
+++ b/vcl/source/gdi/outdev2.cxx
@@ -1783,7 +1783,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 );
}