From ad3acbfa6ee91eedbfafa74313606fe18d98319b Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Fri, 25 Aug 2006 13:51:38 +0000 Subject: [PATCH] avoid empty body warning svn path=/trunk/KDE/kdebase/workspace/; revision=577080 --- tabbox.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tabbox.cpp b/tabbox.cpp index 14cde31afd..266211b046 100644 --- a/tabbox.cpp +++ b/tabbox.cpp @@ -126,7 +126,9 @@ void TabBox::createClientList(ClientList &list, int desktop /*-1 = all*/, Client else if( !list.contains( modal )) list += modal; else - ; // nothing + { + // nothing + } } }