From 568b06087bb6d5b2b4e32da32a20284d8c591579 Mon Sep 17 00:00:00 2001 From: Laurent Montel Date: Sun, 9 May 2004 16:45:04 +0000 Subject: [PATCH] if (bla) delete bla; => delete bla; svn path=/trunk/kdebase/kwin/; revision=309793 --- clients/keramik/keramik.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/clients/keramik/keramik.cpp b/clients/keramik/keramik.cpp index 81a2341319..e2f279e55d 100644 --- a/clients/keramik/keramik.cpp +++ b/clients/keramik/keramik.cpp @@ -1236,11 +1236,9 @@ void KeramikClient::iconChange() if ( clientHandler->showAppIcons() ) { // Force updateCaptionBuffer() to recreate the cached icons - if ( activeIcon ) - delete activeIcon; + delete activeIcon; - if ( inactiveIcon ) - delete inactiveIcon; + delete inactiveIcon; activeIcon = inactiveIcon = NULL;