author | andyq <andyq> | 2002-12-20 13:11:54 (UTC) |
---|---|---|
committer | andyq <andyq> | 2002-12-20 13:11:54 (UTC) |
commit | 3bdaf9ff6bea6d7263bebff83dcdc05d4506d442 (patch) (side-by-side diff) | |
tree | 9716e4fcd62d371a1955759287a972bee8f77e48 | |
parent | 48bab4b65417d12dac1e2ef61f9b059fc5dabdcc (diff) | |
download | opie-3bdaf9ff6bea6d7263bebff83dcdc05d4506d442.zip opie-3bdaf9ff6bea6d7263bebff83dcdc05d4506d442.tar.gz opie-3bdaf9ff6bea6d7263bebff83dcdc05d4506d442.tar.bz2 |
Refreshes available space on current destination after packages finished installing
-rw-r--r-- | noncore/settings/aqpkg/installdlgimpl.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/noncore/settings/aqpkg/installdlgimpl.cpp b/noncore/settings/aqpkg/installdlgimpl.cpp index 80c06ba..bd07828 100644 --- a/noncore/settings/aqpkg/installdlgimpl.cpp +++ b/noncore/settings/aqpkg/installdlgimpl.cpp @@ -226,48 +226,50 @@ void InstallDlgImpl :: installSelected() flags |= FORCE_REINSTALL; for ( it = updateList.begin() ; it != updateList.end() ; ++it ) { if ( it->option == "R" ) pIpkg->setOption( "reinstall" ); else pIpkg->setOption( "upgrade" ); pIpkg->setDestination( it->destination->getDestinationName() ); pIpkg->setDestinationDir( it->destination->getDestinationPath() ); pIpkg->setPackage( it->packageName ); int tmpFlags = flags; if ( it->destination->linkToRoot() && it->recreateLinks ) tmpFlags |= MAKE_LINKS; pIpkg->setFlags( tmpFlags ); pIpkg->runIpkg(); } delete pIpkg; } btnOptions->setEnabled( true ); // btnInstall->setEnabled( true ); btnInstall->setText( tr( "Close" ) ); + + displayAvailableSpace( destination->currentText() ); } void InstallDlgImpl :: displayText(const QString &text ) { QString t = output->text() + "\n" + text; output->setText( t ); output->setCursorPosition( output->numLines(), 0 ); } void InstallDlgImpl :: displayAvailableSpace( const QString &text ) { vector<Destination>::iterator d = dataMgr->getDestination( text ); QString destDir = d->getDestinationPath(); long blockSize = 0; long totalBlocks = 0; long availBlocks = 0; QString space; if ( Utils::getStorageSpace( (const char *)destDir, &blockSize, &totalBlocks, &availBlocks ) ) { long mult = blockSize / 1024; long div = 1024 / blockSize; |