summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/aqpkg/networkpkgmgr.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/noncore/settings/aqpkg/networkpkgmgr.cpp b/noncore/settings/aqpkg/networkpkgmgr.cpp
index d84fb4b..9acaaf1 100644
--- a/noncore/settings/aqpkg/networkpkgmgr.cpp
+++ b/noncore/settings/aqpkg/networkpkgmgr.cpp
@@ -427,12 +427,21 @@ void NetworkPackageManager :: applyChanges()
{
InstallData data = dealWithItem( item );
workingPackages.push_back( data );
}
}
+ if ( workingPackages.size() == 0 )
+ {
+ // Nothing to do
+ QMessageBox::information( this, "Nothing to do",
+ "No packages selected", "OK" );
+
+ return;
+ }
+
// do the stuff
InstallDlgImpl dlg( workingPackages, dataMgr, this, "Install", true );
dlg.showDlg();
// Reload data
dataMgr->reloadServerData( LOCAL_SERVER );