Command-line args don't need explicit encoding.

svn path=/trunk/KDE/kdebase/workspace/; revision=802405
This commit is contained in:
Luboš Luňák 2008-04-29 09:13:00 +00:00
parent 1e114cd7ee
commit 4f9cb481c2

View file

@ -1155,7 +1155,7 @@ void Client::killProcess( bool ask, Time timestamp )
connect( process_killer, SIGNAL( finished( int, QProcess::ExitStatus )), SLOT( processKillerExited()));
process_killer->start( KStandardDirs::findExe( "kwin_killer_helper" ),
QStringList() << "--pid" << QByteArray().setNum( (unsigned)pid ) << "--hostname" << machine
<< "--windowname" << caption().toUtf8()
<< "--windowname" << caption()
<< "--applicationname" << resourceClass()
<< "--wid" << QString::number( window() )
<< "--timestamp" << QString::number( timestamp ));