From e7c55a0c892313e561c8e8c123fc83f15b597197 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= Date: Thu, 13 Nov 2003 18:27:31 +0000 Subject: [PATCH] Ouch ... thanks to Ossi for noticing. svn path=/trunk/kdebase/kwin/; revision=266865 --- group.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/group.cpp b/group.cpp index 9b8acb6f99..d85dafcd9e 100644 --- a/group.cpp +++ b/group.cpp @@ -213,6 +213,7 @@ bool Client::belongToSameApplication( const Client* c1, const Client* c2, bool a ; // "different" apps else if( c1->pid() == 0 || c2->pid() == 0 ) ; // old apps that don't have _NET_WM_PID, consider them different + else same_app = true; // looks like it's the same app return same_app; }