Changeset 102972 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Jan 19, 2024 2:24:15 PM (13 months ago)
- svn:sync-xref-src-repo-rev:
- 161200
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsSystem.cpp
r101717 r102972 1062 1062 if (fSuccess && isMachineOffline() && newSystemData.m_fEnabledPAE != oldSystemData.m_fEnabledPAE) 1063 1063 { 1064 comPlatformX86.SetCPUProperty(KCPUPropertyTypeX86_PAE, newSystemData.m_fEnabled NestedPaging);1064 comPlatformX86.SetCPUProperty(KCPUPropertyTypeX86_PAE, newSystemData.m_fEnabledPAE); 1065 1065 fSuccess = comPlatformX86.isOk(); 1066 1066 /// @todo convey error info .. … … 1069 1069 if (fSuccess && isMachineOffline() && newSystemData.m_fEnabledNestedHwVirtEx != oldSystemData.m_fEnabledNestedHwVirtEx) 1070 1070 { 1071 comPlatformX86.SetCPUProperty(KCPUPropertyTypeX86_HWVirt, newSystemData.m_fEnabledNested Paging);1071 comPlatformX86.SetCPUProperty(KCPUPropertyTypeX86_HWVirt, newSystemData.m_fEnabledNestedHwVirtEx); 1072 1072 fSuccess = comPlatformX86.isOk(); 1073 1073 /// @todo convey error info ..
Note:
See TracChangeset
for help on using the changeset viewer.