summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/aqpkg/installdlgimpl.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/noncore/settings/aqpkg/installdlgimpl.cpp b/noncore/settings/aqpkg/installdlgimpl.cpp
index 31be213..d4f751c 100644
--- a/noncore/settings/aqpkg/installdlgimpl.cpp
+++ b/noncore/settings/aqpkg/installdlgimpl.cpp
@@ -47,16 +47,20 @@ InstallDlgImpl::InstallDlgImpl( vector<QString> &packageList, DataManager *dataM
47 // Grab flags - Turn MAKE_LINKS on by default (if no flags found) 47 // Grab flags - Turn MAKE_LINKS on by default (if no flags found)
48 flags = cfg.readNumEntry( "installFlags", MAKE_LINKS ); 48 flags = cfg.readNumEntry( "installFlags", MAKE_LINKS );
49#else 49#else
50 flags = 0; 50 flags = 0;
51#endif 51#endif
52 52
53 // Output text is read only 53 // Output text is read only
54 output->setReadOnly( true ); 54 output->setReadOnly( true );
55 QFont f( "helvetica" );
56 f.setPointSize( 10 );
57 output->setFont( f );
58
55 59
56 // setup destination data 60 // setup destination data
57 int defIndex = 0; 61 int defIndex = 0;
58 int i; 62 int i;
59 for ( i = 0 , dit = dataMgr->getDestinationList().begin() ; dit != dataMgr->getDestinationList().end() ; ++dit, ++i ) 63 for ( i = 0 , dit = dataMgr->getDestinationList().begin() ; dit != dataMgr->getDestinationList().end() ; ++dit, ++i )
60 { 64 {
61 destination->insertItem( dit->getDestinationName() ); 65 destination->insertItem( dit->getDestinationName() );
62 if ( dit->getDestinationName() == defaultDest ) 66 if ( dit->getDestinationName() == defaultDest )