summaryrefslogtreecommitdiff
path: root/noncore/settings
authordrw <drw>2003-03-19 23:37:49 (UTC)
committer drw <drw>2003-03-19 23:37:49 (UTC)
commitdbb584139c579e55cf340eaed5eb873ecb69baf5 (patch) (unidiff)
tree9f616be06919da82a49bce071c83537ffd4ba82f /noncore/settings
parenta83c7aed577b15e23a8baf7c21af61f4b40ffbb0 (diff)
downloadopie-dbb584139c579e55cf340eaed5eb873ecb69baf5.zip
opie-dbb584139c579e55cf340eaed5eb873ecb69baf5.tar.gz
opie-dbb584139c579e55cf340eaed5eb873ecb69baf5.tar.bz2
Fix for bug #733
Diffstat (limited to 'noncore/settings') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/sysinfo/processinfo.cpp4
1 files changed, 4 insertions, 0 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
@@ -172,11 +172,15 @@ void ProcessInfo::slotSendClicked()
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 currprocess = ProcessView->currentItem();
176 if ( currprocess )
177 {
175 QString sigstr = SignalCB->currentText(); 178 QString sigstr = SignalCB->currentText();
176 sigstr.truncate(2); 179 sigstr.truncate(2);
177 int sigid = sigstr.toUInt(); 180 int sigid = sigstr.toUInt();
178 kill( currprocess->text( 0 ).stripWhiteSpace().toUInt(), sigid ); 181 kill( currprocess->text( 0 ).stripWhiteSpace().toUInt(), sigid );
179 } 182 }
183 }
180 184
181} 185}
182 186