From dc7f3961796f4810a1df706b495ea641bad5416b Mon Sep 17 00:00:00 2001 From: Cristian Tibirna Date: Wed, 26 Jan 2000 01:43:26 +0000 Subject: [PATCH] CT: erase crash in tabbox thanks to Malte Starostik svn path=/trunk/kdebase/kwin/; revision=39262 --- tabbox.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tabbox.cpp b/tabbox.cpp index a060786c2c..80fe0c63d4 100644 --- a/tabbox.cpp +++ b/tabbox.cpp @@ -94,9 +94,9 @@ void TabBox::nextPrev( bool next) else client = workspace()->previousClient(client); } while (client != sign && client && - ( !options_traverse_all && !client->isOnDesktop(workspace()->currentDesktop()) ) - || - ( client->isIconified() && client->mainClient() != client ) + (( !options_traverse_all && + !client->isOnDesktop(workspace()->currentDesktop()) ) || + ( client->isIconified() && client->mainClient() != client )) );