summaryrefslogtreecommitdiff
path: root/vcl/source/gdi/animate.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/gdi/animate.cxx')
-rw-r--r--vcl/source/gdi/animate.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/vcl/source/gdi/animate.cxx b/vcl/source/gdi/animate.cxx
index 6e1102a5ac49..e1a96c7434a0 100644
--- a/vcl/source/gdi/animate.cxx
+++ b/vcl/source/gdi/animate.cxx
@@ -146,8 +146,7 @@ void Animation::Clear()
bool Animation::IsTransparent() const
{
- Point aPoint;
- tools::Rectangle aRect( aPoint, maGlobalSize );
+ tools::Rectangle aRect( Point(), maGlobalSize );
bool bRet = false;
// If some small bitmap needs to be replaced by the background,
@@ -446,8 +445,7 @@ bool Animation::Insert( const AnimationBitmap& rStepBmp )
if( !IsInAnimation() )
{
- Point aPoint;
- tools::Rectangle aGlobalRect( aPoint, maGlobalSize );
+ tools::Rectangle aGlobalRect( Point(), maGlobalSize );
maGlobalSize = aGlobalRect.Union( tools::Rectangle( rStepBmp.aPosPix, rStepBmp.aSizePix ) ).GetSize();
maList.emplace_back( new AnimationBitmap( rStepBmp ) );