From 09f1ceb35394765e5ef758b27d2626c5928a4529 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= Date: Fri, 10 Oct 2003 17:28:47 +0000 Subject: [PATCH] Looks like I reversed this condition in r1.398.2.49 . svn path=/trunk/kdebase/kwin/; revision=257811 --- workspace.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workspace.cpp b/workspace.cpp index e01ac3f0ef..1e4fb8faa1 100644 --- a/workspace.cpp +++ b/workspace.cpp @@ -376,7 +376,7 @@ Workspace::~Workspace() ++it ) { // only release the window - if( (*it)->isDesktop()) // TODO ? + if( !(*it)->isDesktop()) // TODO ? storeFakeSessionInfo( *it ); (*it)->releaseWindow( true ); }