Changeset 107121 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Nov 22, 2024 2:11:54 PM (8 weeks ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIIconPool.cpp
r106933 r107121 357 357 m_guestOSTypeIconNames.insert(GUEST_OS_ID_STR_X86("Windows10"), ":/os_win10.png"); 358 358 m_guestOSTypeIconNames.insert(GUEST_OS_ID_STR_X64("Windows10"), ":/os_win10.png"); 359 m_guestOSTypeIconNames.insert(GUEST_OS_ID_STR_A64("Windows10"), ":/os_win10.png"); 359 360 m_guestOSTypeIconNames.insert(GUEST_OS_ID_STR_X64("Windows11"), ":/os_win11.png"); 361 m_guestOSTypeIconNames.insert(GUEST_OS_ID_STR_A64("Windows11"), ":/os_win11.png"); 360 362 m_guestOSTypeIconNames.insert(GUEST_OS_ID_STR_X64("Windows2016"), ":/os_win2k16.png"); 361 363 m_guestOSTypeIconNames.insert(GUEST_OS_ID_STR_X64("Windows2019"), ":/os_win2k19.png"); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMNameOSTypePage.cpp
r107119 r107121 90 90 { QRegularExpression( "(Wi.*8.*32)|(W8.*32)", QRegularExpression::CaseInsensitiveOption), GUEST_OS_ID_STR_X86("Windows8") }, 91 91 { QRegularExpression( "(Wi.*10.*64)|(W10.*64)", QRegularExpression::CaseInsensitiveOption), GUEST_OS_ID_STR_X64("Windows10") }, 92 { QRegularExpression( "(Wi.*10.*64)|(W10.*64)", QRegularExpression::CaseInsensitiveOption), GUEST_OS_ID_STR_A64("Windows10") }, 92 93 { QRegularExpression( "(Wi.*10.*32)|(W10.*32)", QRegularExpression::CaseInsensitiveOption), GUEST_OS_ID_STR_X86("Windows10") }, 93 94 { QRegularExpression( "(Wi.*11)|(W11)", QRegularExpression::CaseInsensitiveOption), GUEST_OS_ID_STR_X64("Windows11") }, 95 { QRegularExpression( "(Wi.*11)|(W11)", QRegularExpression::CaseInsensitiveOption), GUEST_OS_ID_STR_A64("Windows11") }, 94 96 { QRegularExpression( "Wi.*3.*1", QRegularExpression::CaseInsensitiveOption), GUEST_OS_ID_STR_X86("Windows31") }, 95 97 /* Set Windows 10 as default for "Windows". */ 96 98 { QRegularExpression( "Wi.*64", QRegularExpression::CaseInsensitiveOption), GUEST_OS_ID_STR_X64("Windows10") }, 97 99 { QRegularExpression( "Wi.*32", QRegularExpression::CaseInsensitiveOption), GUEST_OS_ID_STR_X86("Windows10") }, 100 /* Set Windows 11 as default for "Windows" on ARM. */ 101 { QRegularExpression( "Wi.*", QRegularExpression::CaseInsensitiveOption), GUEST_OS_ID_STR_A64("Windows11") }, 98 102 /* ReactOS wants to be considered as Windows 2003 */ 99 103 { QRegularExpression( "Reac.*", QRegularExpression::CaseInsensitiveOption), GUEST_OS_ID_STR_X86("Windows2003") },
Note:
See TracChangeset
for help on using the changeset viewer.