author | mickeyl <mickeyl> | 2003-12-06 16:17:57 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2003-12-06 16:17:57 (UTC) |
commit | efb9bf44691e6555a45f0a45f570eb56f1b180d3 (patch) (side-by-side diff) | |
tree | 457464227c5dd82044cc4f3ecddb249766b01bd8 | |
parent | 72336536db05459e3802b3be5032e55607985d0c (diff) | |
download | opie-efb9bf44691e6555a45f0a45f570eb56f1b180d3.zip opie-efb9bf44691e6555a45f0a45f570eb56f1b180d3.tar.gz opie-efb9bf44691e6555a45f0a45f570eb56f1b180d3.tar.bz2 |
\n
-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 8dec9be..709158d 100644 --- a/noncore/settings/sysinfo/processinfo.cpp +++ b/noncore/settings/sysinfo/processinfo.cpp @@ -143,49 +143,49 @@ void ProcessInfo::updateData() newitem = new QListViewItem( ProcessView, processnum, processcmd, processstatus, processtime ); if ( processnum == selectedpid ) { selecteditem = newitem; } } } } ProcessView->setCurrentItem( selecteditem ); } delete proclist; delete procdir; } void ProcessInfo::slotSendClicked() { QListViewItem *currprocess = ProcessView->currentItem(); if ( !currprocess ) { return; } - QString capstr = tr( "You really want to send %1 to this process?" ).arg( SignalCB->currentText() ); + QString capstr = tr( "Really want to send %1\nto this process?" ).arg( SignalCB->currentText() ); if ( QMessageBox::warning( this, currprocess->text( 1 ), capstr, QMessageBox::Yes | QMessageBox::Default, QMessageBox::No | QMessageBox::Escape ) == QMessageBox::Yes ) { 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 ) { QString pid= process->text( 0 ).stripWhiteSpace(); QString command = process->text( 1 ); ProcessDtl->setCaption( pid + " - " + command ); FILE *statfile = fopen( ( QString ) ( "/proc/" + pid + "/status"), "r"); if ( statfile ) |