QString type = prodElem.attribute( "type" ).stripWhiteSpace().lower();
bool pickUp = isBoolAttributeSet( instElem.attribute( "pickupenv" ) );
QString script = instElem.attribute( "script" );
- InstallationType instType = myWizard->getInstType();
QStringList typesList = QStringList::split( ",", type );
- long prodSize = ( instType == Binaries ? (binreq + srcreq) :
- instType == Sources ? srcreq :
- cmplreq );
- if ( typesList.find( "component" ) != typesList.end() ) {
+ if ( typesList.find( "component" ) != typesList.end() )
element = myModules->addItem( name,
- QString::number( prodSize ) + " KB",
+ "unknown",
script );
- }
else
element = myPrereqs->addItem( name,
- QString::number( prodSize ) + " KB",
+ "unknown",
script );
QString descr = QString::null;
if ( prodElem.attribute( "description" ) != "" )