diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2016-05-28 19:48:41 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-05-30 06:35:15 +0000 |
commit | b0950b157859c63561958d894f3363ccc9cad8c4 (patch) | |
tree | 7aff0bd46b9824a74d5f855f62b5bc3f6b9059ba /include/vcl/animate.hxx | |
parent | 77d5491e15c96b5864fccd3ffc3d6a7b90e93367 (diff) |
Remove CycleMode enum
to never takes any value other than NORMAL
Change-Id: I9558ee8864537c695ce1172a0cfad421d5f591ee
Reviewed-on: https://gerrit.libreoffice.org/25587
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/vcl/animate.hxx')
-rw-r--r-- | include/vcl/animate.hxx | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/include/vcl/animate.hxx b/include/vcl/animate.hxx index 73cc12def8c6..3c67aa6c7886 100644 --- a/include/vcl/animate.hxx +++ b/include/vcl/animate.hxx @@ -34,15 +34,6 @@ enum class Disposal Previous }; -enum CycleMode -{ - CYCLE_NOT, - CYCLE_NORMAL, - CYCLE_FALLBACK, - CYCLE_REVERS, - CYCLE_REVERS_FALLBACK -}; - struct VCL_DLLPUBLIC AnimationBitmap { BitmapEx aBmpEx; @@ -131,8 +122,6 @@ public: void SetLoopCount( const sal_uLong nLoopCount ); void ResetLoopCount(); - CycleMode GetCycleMode() const { return meCycleMode; } - void SetNotifyHdl( const Link<Animation*,void>& rLink ) { maNotifyLink = rLink; } const Link<Animation*,void>& GetNotifyHdl() const { return maNotifyLink; } @@ -190,7 +179,6 @@ private: long mnLoopCount; long mnLoops; size_t mnPos; - CycleMode meCycleMode; bool mbIsInAnimation; bool mbLoopTerminated; bool mbIsWaiting; |