From 52c50baf1a2df1df374324f42f64f979d1c832d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= Date: Fri, 15 Dec 2006 14:57:18 +0000 Subject: [PATCH] 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 --- client.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client.cpp b/client.cpp index b2a9311556..68afab0cf4 100644 --- a/client.cpp +++ b/client.cpp @@ -225,9 +225,9 @@ void Client::releaseWindow( bool on_shutdown ) XDestroyWindow( display(), frame ); frame = None; --postpone_geometry_updates; // don't use GeometryUpdatesBlocker, it would now set the geometry + checkNonExistentClients(); deleteClient( this, Allowed ); ungrabXServer(); - checkNonExistentClients(); } // like releaseWindow(), but this one is called when the window has been already destroyed @@ -254,8 +254,8 @@ void Client::destroyClient() XDestroyWindow( display(), frame ); frame = None; --postpone_geometry_updates; // don't use GeometryUpdatesBlocker, it would now set the geometry - deleteClient( this, Allowed ); checkNonExistentClients(); + deleteClient( this, Allowed ); } void Client::updateDecoration( bool check_workspace_pos, bool force )