Removed superfluous connections to animation 'finished' signal.
svn path=/trunk/KDE/kdebase/workspace/; revision=1168969
This commit is contained in:
parent
c709f1163f
commit
393e2b86bc
3 changed files with 1 additions and 4 deletions
|
@ -73,7 +73,6 @@ namespace Oxygen
|
|||
|
||||
// setup connections
|
||||
connect( glowAnimation().data(), SIGNAL( valueChanged( const QVariant& ) ), SLOT( update( void ) ) );
|
||||
connect( glowAnimation().data(), SIGNAL( finished( void ) ), SLOT( update( void ) ) );
|
||||
reset(0);
|
||||
|
||||
}
|
||||
|
|
|
@ -118,8 +118,7 @@ namespace Oxygen
|
|||
glowAnimation().data()->setEasingCurve( QEasingCurve::InOutQuad );
|
||||
|
||||
connect( glowAnimation().data(), SIGNAL( valueChanged( const QVariant& ) ), widget(), SLOT( update( void ) ) );
|
||||
connect( glowAnimation().data(), SIGNAL( finished( void ) ), widget(), SLOT( update( void ) ) );
|
||||
connect( glowAnimation().data(), SIGNAL( finished() ), this, SLOT( clearForceActive() ) );
|
||||
connect( glowAnimation().data(), SIGNAL( finished( void ) ), this, SLOT( clearForceActive( void ) ) );
|
||||
|
||||
|
||||
// title animation data
|
||||
|
|
|
@ -55,7 +55,6 @@ namespace Oxygen
|
|||
|
||||
// setup connections
|
||||
connect( animation().data(), SIGNAL( valueChanged( const QVariant& ) ), SLOT( updateBoundingRects( void ) ) );
|
||||
connect( animation().data(), SIGNAL( finished( void ) ), SLOT( updateBoundingRects( void ) ) );
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue