summaryrefslogtreecommitdiff
path: root/slideshow/source/engine/animatedsprite.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'slideshow/source/engine/animatedsprite.cxx')
-rw-r--r--slideshow/source/engine/animatedsprite.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/slideshow/source/engine/animatedsprite.cxx b/slideshow/source/engine/animatedsprite.cxx
index 3a3279cee306..3ebd7dc5f688 100644
--- a/slideshow/source/engine/animatedsprite.cxx
+++ b/slideshow/source/engine/animatedsprite.cxx
@@ -156,7 +156,7 @@ namespace slideshow
void AnimatedSprite::movePixel( const ::basegfx::B2DPoint& rNewPos )
{
- maPosPixel.reset( rNewPos );
+ maPosPixel = rNewPos;
mpSprite->movePixel( rNewPos );
}
@@ -168,7 +168,7 @@ namespace slideshow
void AnimatedSprite::clip( const ::basegfx::B2DPolyPolygon& rClip )
{
- maClip.reset( rClip );
+ maClip = rClip;
mpSprite->setClipPixel( rClip );
}