Use QString::split

svn path=/trunk/KDE/kdebase/workspace/; revision=463342
icc-effect-5.14.5
Laurent Montel 2005-09-23 16:46:47 +00:00
parent a166c8e3d4
commit 2fd363c03d
1 changed files with 1 additions and 1 deletions

View File

@ -1052,7 +1052,7 @@ void Client::setShortcut( const QString& _cut )
return;
}
QList< KShortcut > keys;
QStringList groups = QStringList::split( ' ', cut );
QStringList groups = cut.split( ' ');
for( QStringList::ConstIterator it = groups.begin();
it != groups.end();
++it )