avoid empty body warning

svn path=/trunk/KDE/kdebase/workspace/; revision=577080
icc-effect-5.14.5
Dirk Mueller 2006-08-25 13:51:38 +00:00
parent 8032ae2117
commit ad3acbfa6e
1 changed files with 3 additions and 1 deletions

View File

@ -126,7 +126,9 @@ void TabBox::createClientList(ClientList &list, int desktop /*-1 = all*/, Client
else if( !list.contains( modal ))
list += modal;
else
; // nothing
{
// nothing
}
}
}