diff options
author | Carsten Driesner <cd@openoffice.org> | 2011-01-12 15:07:10 +0100 |
---|---|---|
committer | Carsten Driesner <cd@openoffice.org> | 2011-01-12 15:07:10 +0100 |
commit | b7f5f44df674c7e47a8c1597bf082a8292b14efd (patch) | |
tree | f0f0217f060ad2b9587f85c1dfecd427a164bc5d /vcl/source/gdi/impanmvw.hxx | |
parent | 6e295e93909a5920b37e919537badfd6e10d0b94 (diff) |
removetooltypes01: Exchange misleading type sal_uIntPtr with sal_uLong
Diffstat (limited to 'vcl/source/gdi/impanmvw.hxx')
-rw-r--r-- | vcl/source/gdi/impanmvw.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/vcl/source/gdi/impanmvw.hxx b/vcl/source/gdi/impanmvw.hxx index a9d41a051bc4..69ae35fe1c6e 100644 --- a/vcl/source/gdi/impanmvw.hxx +++ b/vcl/source/gdi/impanmvw.hxx @@ -57,7 +57,7 @@ private: Region maClip; VirtualDevice* mpBackground; VirtualDevice* mpRestore; - sal_uIntPtr mnActPos; + sal_uLong mnActPos; Disposal meLastDisposal; sal_Bool mbPause; sal_Bool mbFirst; @@ -66,18 +66,18 @@ private: sal_Bool mbVMirr; void ImplGetPosSize( const AnimationBitmap& rAnm, Point& rPosPix, Size& rSizePix ); - void ImplDraw( sal_uIntPtr nPos, VirtualDevice* pVDev ); + void ImplDraw( sal_uLong nPos, VirtualDevice* pVDev ); public: ImplAnimView( Animation* pParent, OutputDevice* pOut, - const Point& rPt, const Size& rSz, sal_uIntPtr nExtraData, + const Point& rPt, const Size& rSz, sal_uLong nExtraData, OutputDevice* pFirstFrameOutDev = NULL ); ~ImplAnimView(); sal_Bool ImplMatches( OutputDevice* pOut, long nExtraData ) const; - void ImplDrawToPos( sal_uIntPtr nPos ); - void ImplDraw( sal_uIntPtr nPos ); + void ImplDrawToPos( sal_uLong nPos ); + void ImplDraw( sal_uLong nPos ); void ImplRepaint(); AInfo* ImplCreateAInfo() const; |