Boy, I'm so smart, first deleting an object and then doing a consistency check on it.
svn path=/trunk/KDE/kdebase/workspace/; revision=613884
This commit is contained in:
parent
ce58330fc4
commit
52c50baf1a
1 changed files with 2 additions and 2 deletions
|
@ -225,9 +225,9 @@ void Client::releaseWindow( bool on_shutdown )
|
||||||
XDestroyWindow( display(), frame );
|
XDestroyWindow( display(), frame );
|
||||||
frame = None;
|
frame = None;
|
||||||
--postpone_geometry_updates; // don't use GeometryUpdatesBlocker, it would now set the geometry
|
--postpone_geometry_updates; // don't use GeometryUpdatesBlocker, it would now set the geometry
|
||||||
|
checkNonExistentClients();
|
||||||
deleteClient( this, Allowed );
|
deleteClient( this, Allowed );
|
||||||
ungrabXServer();
|
ungrabXServer();
|
||||||
checkNonExistentClients();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// like releaseWindow(), but this one is called when the window has been already destroyed
|
// like releaseWindow(), but this one is called when the window has been already destroyed
|
||||||
|
@ -254,8 +254,8 @@ void Client::destroyClient()
|
||||||
XDestroyWindow( display(), frame );
|
XDestroyWindow( display(), frame );
|
||||||
frame = None;
|
frame = None;
|
||||||
--postpone_geometry_updates; // don't use GeometryUpdatesBlocker, it would now set the geometry
|
--postpone_geometry_updates; // don't use GeometryUpdatesBlocker, it would now set the geometry
|
||||||
deleteClient( this, Allowed );
|
|
||||||
checkNonExistentClients();
|
checkNonExistentClients();
|
||||||
|
deleteClient( this, Allowed );
|
||||||
}
|
}
|
||||||
|
|
||||||
void Client::updateDecoration( bool check_workspace_pos, bool force )
|
void Client::updateDecoration( bool check_workspace_pos, bool force )
|
||||||
|
|
Loading…
Reference in a new issue