less qt3support

svn path=/trunk/KDE/kdebase/workspace/; revision=707454
This commit is contained in:
Pino Toscano 2007-09-01 22:29:47 +00:00
parent 2250012850
commit ee84e19a8f
3 changed files with 4 additions and 4 deletions

View file

@ -263,7 +263,7 @@ void PresentWindowsEffect::windowClosed( EffectWindow* w )
{
if( mHoverWindow == w )
mHoverWindow = NULL;
mWindowsToPresent.remove( w );
mWindowsToPresent.removeAll( w );
rearrangeWindows();
}

View file

@ -171,7 +171,7 @@ void DetectDialog::selectWindow()
// use a dialog, so that all user input is blocked
// use WX11BypassWM and moving away so that it's not actually visible
// grab only mouse, so that keyboard can be used e.g. for switching windows
grabber = new KDialog( 0, Qt::WX11BypassWM );
grabber = new KDialog( 0, Qt::X11BypassWindowManagerHint );
grabber->move( -1000, -1000 );
grabber->show();
grabber->grabMouse( Qt::CrossCursor );

View file

@ -441,8 +441,8 @@ Workspace::~Workspace()
// No removeClient() is called, it does more than just removing.
// However, remove from some lists to e.g. prevent performTransiencyCheck()
// from crashing.
clients.remove( *it );
desktops.remove( *it );
clients.removeAll( *it );
desktops.removeAll( *it );
}
for( UnmanagedList::ConstIterator it = unmanaged.begin();
it != unmanaged.end();