Changeset 20275 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jun 4, 2009 12:55:54 PM (16 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxGlobal.cpp
r20242 r20275 110 110 #include <iprt/mem.h> 111 111 #endif 112 113 //#define VBOX_WITH_FULL_DETAILS_REPORT /* hidden for now */ 112 114 113 115 //#warning "port me: check this" … … 1462 1464 bootOrder = toString (KDeviceType_Null); 1463 1465 1466 #ifdef VBOX_WITH_FULL_DETAILS_REPORT 1464 1467 /* ACPI */ 1465 1468 QString acpi = biosSettings.GetACPIEnabled() … … 1486 1489 ? tr ("Enabled", "details report (Nested Paging)") 1487 1490 : tr ("Disabled", "details report (Nested Paging)"); 1491 #endif /* VBOX_WITH_FULL_DETAILS_REPORT */ 1488 1492 1489 1493 QString item = QString (sSectionItemTpl2).arg (tr ("Base Memory", "details report"), … … 1494 1498 .arg (aMachine.GetCPUCount()) 1495 1499 + QString (sSectionItemTpl2).arg (tr ("Boot Order", "details report"), bootOrder) 1500 #ifdef VBOX_WITH_FULL_DETAILS_REPORT 1496 1501 + QString (sSectionItemTpl2).arg (tr ("ACPI", "details report"), acpi) 1497 1502 + QString (sSectionItemTpl2).arg (tr ("IO APIC", "details report"), ioapic) 1498 1503 + QString (sSectionItemTpl2).arg (tr ("PAE/NX", "details report"), pae) 1499 1504 + QString (sSectionItemTpl2).arg (tr ("VT-x/AMD-V", "details report"), virt) 1500 + QString (sSectionItemTpl2).arg (tr ("Nested Paging", "details report"), nested); 1505 + QString (sSectionItemTpl2).arg (tr ("Nested Paging", "details report"), nested) 1506 #endif /* VBOX_WITH_FULL_DETAILS_REPORT */ 1507 ; 1501 1508 1502 1509 report += sectionTpl 1510 #ifdef VBOX_WITH_FULL_DETAILS_REPORT 1503 1511 .arg (2 + 8) /* rows */ 1512 #else 1513 .arg (2 + 3) /* rows */ 1514 #endif /* VBOX_WITH_FULL_DETAILS_REPORT */ 1504 1515 .arg (":/chipset_16px.png", /* icon */ 1505 1516 "#system", /* link */ -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxVMSettingsDisplay.ui
r19664 r20275 196 196 <widget class="QWidget" name="mTabVRDP" > 197 197 <attribute name="title" > 198 <string> V&RDP</string>198 <string>&Remote Display</string> 199 199 </attribute> 200 200 <layout class="QVBoxLayout" name="mLtVRDPPage" >
Note:
See TracChangeset
for help on using the changeset viewer.