Removed superfluous connections to animation 'finished' signal.

svn path=/trunk/KDE/kdebase/workspace/; revision=1168969
icc-effect-5.14.5
Hugo Pereira Da Costa 2010-08-28 02:02:50 +00:00
parent c709f1163f
commit 393e2b86bc
3 changed files with 1 additions and 4 deletions

View File

@ -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);
}

View File

@ -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

View File

@ -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 ) ) );
}