Commit 15d4d417 authored by Francois Cartegnie's avatar Francois Cartegnie

Qt: animators: missing initializers.

cid #1170830
parent eaa5b320
...@@ -28,6 +28,7 @@ ...@@ -28,6 +28,7 @@
BasicAnimator::BasicAnimator( QObject *parent ) BasicAnimator::BasicAnimator( QObject *parent )
: QAbstractAnimation( parent ), current_frame( 0 ) : QAbstractAnimation( parent ), current_frame( 0 )
{ {
setFps( 15 );
setLoopCount( -1 ); setLoopCount( -1 );
} }
......
...@@ -47,7 +47,6 @@ protected: ...@@ -47,7 +47,6 @@ protected:
virtual void updateCurrentTime ( int msecs ); virtual void updateCurrentTime ( int msecs );
int fps; int fps;
int interval; int interval;
int lastframe_msecs;
int current_frame; int current_frame;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment