Use QString::split
svn path=/trunk/KDE/kdebase/workspace/; revision=463342
This commit is contained in:
parent
a166c8e3d4
commit
2fd363c03d
1 changed files with 1 additions and 1 deletions
|
@ -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 )
|
||||
|
|
Loading…
Reference in a new issue