summaryrefslogtreecommitdiff
path: root/noncore/unsupported
authortille <tille>2002-05-01 22:19:05 (UTC)
committer tille <tille>2002-05-01 22:19:05 (UTC)
commit89b16f3378b783be9058852528e066dcadea953d (patch) (side-by-side diff)
treea66ab1808d96f326831bbf46e36a4fd7a214e215 /noncore/unsupported
parent82ff405e40d4aa6cad8b5583f9d7e5b89a78f261 (diff)
downloadopie-89b16f3378b783be9058852528e066dcadea953d.zip
opie-89b16f3378b783be9058852528e066dcadea953d.tar.gz
opie-89b16f3378b783be9058852528e066dcadea953d.tar.bz2
added popupmenu for installed packages
Diffstat (limited to 'noncore/unsupported') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/oipkg/packagelistview.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/noncore/unsupported/oipkg/packagelistview.cpp b/noncore/unsupported/oipkg/packagelistview.cpp
index 36d081b..26b1ce7 100644
--- a/noncore/unsupported/oipkg/packagelistview.cpp
+++ b/noncore/unsupported/oipkg/packagelistview.cpp
@@ -64,6 +64,13 @@ void PackageListView::showPopup()
connect( destsMenu, SIGNAL( activated( int ) ),
this, SLOT( changePackageDest( int ) ) );
}else{
+ popupAction = new QAction( QObject::tr("Remove"),QString::null, 0, this, 0 );
+ popupAction->addTo( popupMenu );
+ connect( popupAction, SIGNAL( activated() ),
+ this , SLOT( toggleProcess() ) );
+ popupAction = new QAction( QObject::tr("Reinstall"),QString::null, 0, this, 0 );
+ popupAction->addTo( popupMenu );
+ popupAction->setEnabled( false );
}
popupMenu->popup( QCursor::pos() );
}