postpaintscreen, not window
svn path=/trunk/KDE/kdebase/workspace/; revision=736348
This commit is contained in:
parent
d2c3d1a832
commit
f406b68a57
2 changed files with 5 additions and 5 deletions
|
@ -43,11 +43,11 @@ void LogoutEffect::paintWindow( EffectWindow* w, int mask, QRegion region, Windo
|
|||
effects->paintWindow( w, mask, region, data );
|
||||
}
|
||||
|
||||
void LogoutEffect::postPaintWindow( EffectWindow* w )
|
||||
void LogoutEffect::postPaintScreen()
|
||||
{
|
||||
if( logout_window != NULL && w != logout_window && progress != 1 )
|
||||
w->addRepaintFull();
|
||||
effects->postPaintWindow( w );
|
||||
if( logout_window != NULL && progress != 1 )
|
||||
effects->addRepaintFull();
|
||||
effects->postPaintScreen();
|
||||
}
|
||||
|
||||
void LogoutEffect::windowAdded( EffectWindow* w )
|
||||
|
|
|
@ -23,8 +23,8 @@ class LogoutEffect
|
|||
public:
|
||||
LogoutEffect();
|
||||
virtual void prePaintScreen( ScreenPrePaintData& data, int time );
|
||||
virtual void postPaintScreen();
|
||||
virtual void paintWindow( EffectWindow* w, int mask, QRegion region, WindowPaintData& data );
|
||||
virtual void postPaintWindow( EffectWindow* w );
|
||||
virtual void windowAdded( EffectWindow* w );
|
||||
virtual void windowClosed( EffectWindow* w );
|
||||
private:
|
||||
|
|
Loading…
Reference in a new issue