-rw-r--r-- | noncore/settings/sysinfo/processinfo.cpp | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/noncore/settings/sysinfo/processinfo.cpp b/noncore/settings/sysinfo/processinfo.cpp index 2232771..1de1a19 100644 --- a/noncore/settings/sysinfo/processinfo.cpp +++ b/noncore/settings/sysinfo/processinfo.cpp | |||
@@ -166,19 +166,23 @@ void ProcessInfo::slotSendClicked() | |||
166 | 166 | ||
167 | QString capstr = tr( "You really want to send\n" ); | 167 | QString capstr = tr( "You really want to send\n" ); |
168 | capstr.append( SignalCB->currentText() ); | 168 | capstr.append( SignalCB->currentText() ); |
169 | capstr.append( "\nto this process?" ); | 169 | capstr.append( "\nto this process?" ); |
170 | 170 | ||
171 | 171 | ||
172 | if ( QMessageBox::warning( this, currprocess->text( 1 ), capstr, | 172 | if ( QMessageBox::warning( this, currprocess->text( 1 ), capstr, |
173 | QMessageBox::Yes | QMessageBox::Default, QMessageBox::No | QMessageBox::Escape ) == QMessageBox::Yes ) | 173 | QMessageBox::Yes | QMessageBox::Default, QMessageBox::No | QMessageBox::Escape ) == QMessageBox::Yes ) |
174 | { | 174 | { |
175 | QString sigstr = SignalCB->currentText(); | 175 | currprocess = ProcessView->currentItem(); |
176 | sigstr.truncate(2); | 176 | if ( currprocess ) |
177 | int sigid = sigstr.toUInt(); | 177 | { |
178 | kill( currprocess->text( 0 ).stripWhiteSpace().toUInt(), sigid ); | 178 | QString sigstr = SignalCB->currentText(); |
179 | sigstr.truncate(2); | ||
180 | int sigid = sigstr.toUInt(); | ||
181 | kill( currprocess->text( 0 ).stripWhiteSpace().toUInt(), sigid ); | ||
182 | } | ||
179 | } | 183 | } |
180 | 184 | ||
181 | } | 185 | } |
182 | 186 | ||
183 | void ProcessInfo::viewProcess( QListViewItem *process ) | 187 | void ProcessInfo::viewProcess( QListViewItem *process ) |
184 | { | 188 | { |