Changeset 101244 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Sep 22, 2023 4:38:35 PM (16 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UINameAndSystemEditor.cpp
r101242 r101244 448 448 else 449 449 { 450 /* Populate variant combo: */ 451 /* If family is Linux then select Oracle Linux as variant: */ 452 int iOracleIndex = -1; 450 453 foreach (const QString &strVariant, variantList) 451 454 { 452 455 m_pComboVariant->addItem(strVariant); 453 } 456 if (strVariant == "Oracle Linux") 457 iOracleIndex = m_pComboVariant->count() - 1; 458 } 459 if (iOracleIndex != -1) 460 m_pComboVariant->setCurrentIndex(iOracleIndex); 461 454 462 populateTypeCombo(pGuestOSTypeManager->getTypeListForVariant(m_pComboVariant->currentText())); 455 463 }
Note:
See TracChangeset
for help on using the changeset viewer.