SVN_SILENT Small readability fix

svn path=/trunk/KDE/kdebase/workspace/; revision=1123126
icc-effect-5.14.5
Nikhil Marathe 2010-05-05 11:46:19 +00:00
parent b87fa7ef41
commit 20b419cb47
1 changed files with 3 additions and 1 deletions

View File

@ -82,7 +82,9 @@ void Workspace::slotToggleTiling()
void Workspace::createTile( Client *c )
{
if( c == NULL ) return;
if( c == NULL )
return;
if( c->desktop() < 0 || c->desktop() >= tilingLayouts.size() ) return;
kDebug(1212) << "Now tiling " << c->caption();