-rw-r--r-- | noncore/settings/sysinfo/processinfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/settings/sysinfo/processinfo.cpp b/noncore/settings/sysinfo/processinfo.cpp index f9263ea..4ecb704 100644 --- a/noncore/settings/sysinfo/processinfo.cpp +++ b/noncore/settings/sysinfo/processinfo.cpp | |||
@@ -120,20 +120,20 @@ void ProcessInfo::updateData() | |||
120 | void ProcessInfo::viewProcess(QListViewItem *process) | 120 | void ProcessInfo::viewProcess(QListViewItem *process) |
121 | { | 121 | { |
122 | QString pid= process->text(0); | 122 | QString pid= process->text(0); |
123 | QString command = process->text(1); | 123 | QString command = process->text(1); |
124 | switch( QMessageBox::information( this, (tr("Kill Process?")), | 124 | switch( QMessageBox::information( this, (tr("Kill Process?")), |
125 | (tr("You really want to kill\n"+command+" PID: "+pid+"?")), | 125 | (tr("You really want to kill\n"+command+" PID: "+pid+"?")), |
126 | (tr("Yes")), (tr("No")), 0 )){ | 126 | (tr("Yes")), (tr("No")), 0 )){ |
127 | case 0: // Yes clicked, | 127 | case 0: // Yes clicked, |
128 | { | 128 | { |
129 | bool ok; | 129 | bool ok; |
130 | pid_t child=pid.toInt(&ok,10); | 130 | pid_t child=pid.toInt(&ok,10); |
131 | if((kill(child,SIGKILL)) < 0) | 131 | if((kill(child,SIGKILL)) < 0) |
132 | perror("kill:SIGTERM"); | 132 | perror("kill:SIGKILL"); |
133 | } | 133 | } |
134 | break; | 134 | break; |
135 | case 1: // Cancel | 135 | case 1: // Cancel |
136 | break; | 136 | break; |
137 | }; | 137 | }; |
138 | //printf("Double click for PID: %s\n", process->text(0).stripWhiteSpace().latin1()); | 138 | //printf("Double click for PID: %s\n", process->text(0).stripWhiteSpace().latin1()); |
139 | } | 139 | } |