From ba024133df23a6b351d7b0e0c7accdee379454c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= Date: Wed, 12 Mar 2008 15:15:29 +0000 Subject: [PATCH] Don't use localized number format for PID, it looks odd. svn path=/trunk/KDE/kdebase/workspace/; revision=784838 --- killer/killer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ) {