author | drw <drw> | 2003-03-19 23:37:49 (UTC) |
---|---|---|
committer | drw <drw> | 2003-03-19 23:37:49 (UTC) |
commit | dbb584139c579e55cf340eaed5eb873ecb69baf5 (patch) (side-by-side diff) | |
tree | 9f616be06919da82a49bce071c83537ffd4ba82f /noncore | |
parent | a83c7aed577b15e23a8baf7c21af61f4b40ffbb0 (diff) | |
download | opie-dbb584139c579e55cf340eaed5eb873ecb69baf5.zip opie-dbb584139c579e55cf340eaed5eb873ecb69baf5.tar.gz opie-dbb584139c579e55cf340eaed5eb873ecb69baf5.tar.bz2 |
Fix for bug #733
-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() QString capstr = tr( "You really want to send\n" ); capstr.append( SignalCB->currentText() ); capstr.append( "\nto this process?" ); - if ( QMessageBox::warning( this, currprocess->text( 1 ), capstr, - QMessageBox::Yes | QMessageBox::Default, QMessageBox::No | QMessageBox::Escape ) == QMessageBox::Yes ) + if ( QMessageBox::warning( this, currprocess->text( 1 ), capstr, + QMessageBox::Yes | QMessageBox::Default, QMessageBox::No | QMessageBox::Escape ) == QMessageBox::Yes ) { - QString sigstr = SignalCB->currentText(); - sigstr.truncate(2); - int sigid = sigstr.toUInt(); - kill( currprocess->text( 0 ).stripWhiteSpace().toUInt(), sigid ); + currprocess = ProcessView->currentItem(); + if ( currprocess ) + { + QString sigstr = SignalCB->currentText(); + sigstr.truncate(2); + int sigid = sigstr.toUInt(); + kill( currprocess->text( 0 ).stripWhiteSpace().toUInt(), sigid ); + } } } void ProcessInfo::viewProcess( QListViewItem *process ) { |