Changeset 28735 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Apr 26, 2010 9:16:33 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIIndicatorsPool.cpp
r28678 r28735 522 522 return; 523 523 524 bool bVirtEnabled = console.GetDebugger().GetHWVirtExEnabled(); 524 const CMachineDebugger &debugger = console.GetDebugger(); 525 if (debugger.isNull()) 526 return; 527 528 bool bVirtEnabled = debugger.GetHWVirtExEnabled(); 525 529 QString virtualization = bVirtEnabled ? 526 530 VBoxGlobal::tr("Enabled", "details report (VT-x/AMD-V)") : 527 531 VBoxGlobal::tr("Disabled", "details report (VT-x/AMD-V)"); 528 532 529 bool bNestEnabled = console.GetDebugger().GetHWVirtExNestedPagingEnabled();533 bool bNestEnabled = debugger.GetHWVirtExNestedPagingEnabled(); 530 534 QString nestedPaging = bNestEnabled ? 531 535 VBoxGlobal::tr("Enabled", "nested paging") :
Note:
See TracChangeset
for help on using the changeset viewer.