summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/aqpkg/installdlgimpl.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/noncore/settings/aqpkg/installdlgimpl.cpp b/noncore/settings/aqpkg/installdlgimpl.cpp
index bd07828..bf2c482 100644
--- a/noncore/settings/aqpkg/installdlgimpl.cpp
+++ b/noncore/settings/aqpkg/installdlgimpl.cpp
@@ -235,33 +235,34 @@ void InstallDlgImpl :: installSelected()
235 pIpkg->setPackage( it->packageName ); 235 pIpkg->setPackage( it->packageName );
236 236
237 int tmpFlags = flags; 237 int tmpFlags = flags;
238 if ( it->destination->linkToRoot() && it->recreateLinks ) 238 if ( it->destination->linkToRoot() && it->recreateLinks )
239 tmpFlags |= MAKE_LINKS; 239 tmpFlags |= MAKE_LINKS;
240 pIpkg->setFlags( tmpFlags ); 240 pIpkg->setFlags( tmpFlags );
241 pIpkg->runIpkg(); 241 pIpkg->runIpkg();
242 } 242 }
243 243
244 delete pIpkg; 244 delete pIpkg;
245 } 245 }
246 246
247 btnOptions->setEnabled( true ); 247 btnOptions->setEnabled( true );
248// btnInstall->setEnabled( true ); 248// btnInstall->setEnabled( true );
249 btnInstall->setText( tr( "Close" ) ); 249 btnInstall->setText( tr( "Close" ) );
250 250
251 displayAvailableSpace( destination->currentText() ); 251 if ( destination->currentText() != 0 && destination->currentText() != "" )
252 displayAvailableSpace( destination->currentText() );
252} 253}
253 254
254 255
255void InstallDlgImpl :: displayText(const QString &text ) 256void InstallDlgImpl :: displayText(const QString &text )
256{ 257{
257 QString t = output->text() + "\n" + text; 258 QString t = output->text() + "\n" + text;
258 output->setText( t ); 259 output->setText( t );
259 output->setCursorPosition( output->numLines(), 0 ); 260 output->setCursorPosition( output->numLines(), 0 );
260} 261}
261 262
262 263
263void InstallDlgImpl :: displayAvailableSpace( const QString &text ) 264void InstallDlgImpl :: displayAvailableSpace( const QString &text )
264{ 265{
265 vector<Destination>::iterator d = dataMgr->getDestination( text ); 266 vector<Destination>::iterator d = dataMgr->getDestination( text );
266 QString destDir = d->getDestinationPath(); 267 QString destDir = d->getDestinationPath();
267 268