VirtualBox

Changeset 58828 in vbox


Ignore:
Timestamp:
Nov 23, 2015 4:38:44 PM (9 years ago)
Author:
vboxsync
Message:

FE/Qt: bugref:8115: Mac OS X: VM settings: System page: Force 'VT-x/AMD-V' checkbox-button to be enabled by default as it is always used/enabled on Mac OS X.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsSystem.cpp

    r58824 r58828  
    187187    int iParavirtProviderPosition = m_pComboParavirtProvider->findData(systemData.m_paravirtProvider);
    188188    m_pComboParavirtProvider->setCurrentIndex(iParavirtProviderPosition == -1 ? 0 : iParavirtProviderPosition);
     189    /* Force 'VT-x/AMD-V' checkbox-button to be enabled by default as it is always used/enabled on Mac OS X: */
     190#ifdef Q_WS_MAC
     191    m_pCheckBoxVirtualization->setChecked(true);
     192#else /* !Q_WS_MAC */
    189193    m_pCheckBoxVirtualization->setChecked(systemData.m_fEnabledHwVirtEx);
     194#endif /* !Q_WS_MAC */
    190195    m_pCheckBoxNestedPaging->setChecked(systemData.m_fEnabledNestedPaging);
    191196
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette