diff --git a/killer/killer.cpp b/killer/killer.cpp index eebe3bba85..d98d302ca8 100644 --- a/killer/killer.cpp +++ b/killer/killer.cpp @@ -67,7 +67,7 @@ int main( int argc, char* argv[] ) "

Window with title \"%2\" is not responding. " "This window belongs to application %1 (PID=%3, hostname=%4).

" "

Do you wish to terminate this application? (All unsaved data in this application will be lost.)

" , - appname, caption, pid, QString( hostname ) ); + appname, caption, QString::number( pid ), QString( hostname ) ); app.updateUserTimestamp( timestamp ); if( KMessageBox::warningYesNoWId( id, question, QString(), KGuiItem(i18n("Terminate")), KGuiItem(i18n("Keep Running")) ) == KMessageBox::Yes ) {