diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-19 12:57:58 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-19 05:39:01 +0000 |
commit | 52f296ac1a77cded6d4318a5f5d13bbf1c4f6877 (patch) | |
tree | 09f82e9e59ce41a6e535ffef6e2fb3ca5752c76d /basebmp | |
parent | 4afb2a6a95fd7ca09542fc128cbb00dd9708b81c (diff) |
Remove gcc3 workaround for bug long since fixed in gcc
Change-Id: Ieb1c41481a79ab8713663caee3d5373640ff0ec8
Reviewed-on: https://gerrit.libreoffice.org/9102
Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org>
Tested-by: Chris Sherlock <chris.sherlock79@gmail.com>
Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com>
Diffstat (limited to 'basebmp')
-rw-r--r-- | basebmp/source/bitmapdevice.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/basebmp/source/bitmapdevice.cxx b/basebmp/source/bitmapdevice.cxx index e2836dedf260..bf3de07a80eb 100644 --- a/basebmp/source/bitmapdevice.cxx +++ b/basebmp/source/bitmapdevice.cxx @@ -1616,8 +1616,7 @@ void BitmapDevice::drawMaskedColor( Color aSrcColor, BitmapDeviceSharedPtr pAlphaCopy( cloneBitmapDevice( aSize, shared_from_this()) ); - basegfx::B2ITuple aGcc3WorkaroundTemporary; - const basegfx::B2IBox aAlphaRange( aGcc3WorkaroundTemporary, + const basegfx::B2IBox aAlphaRange( basegfx::B2ITuple(), aSize ); pAlphaCopy->drawBitmap(rAlphaMask, aSrcRange, @@ -1669,8 +1668,7 @@ void BitmapDevice::drawMaskedColor( Color aSrcColor, BitmapDeviceSharedPtr pAlphaCopy( cloneBitmapDevice( aSize, shared_from_this()) ); - basegfx::B2ITuple aGcc3WorkaroundTemporary; - const basegfx::B2IBox aAlphaRange( aGcc3WorkaroundTemporary, + const basegfx::B2IBox aAlphaRange( basegfx::B2ITuple(), aSize ); pAlphaCopy->drawBitmap(rAlphaMask, aSrcRange, |