Changeset 8737 in vbox for trunk/src/VBox/Frontends/VirtualBox4
- Timestamp:
- May 9, 2008 10:30:46 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 30687
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxGlobal.cpp
r8692 r8737 1361 1361 + QString (sSectionItemTpl).arg (tr ("ACPI", "details report"), "%6") 1362 1362 + QString (sSectionItemTpl).arg (tr ("IO APIC", "details report"), "%7") 1363 + QString (sSectionItemTpl).arg (tr ("VT-x/AMD-V", "details report"), "%8"); 1363 + QString (sSectionItemTpl).arg (tr ("VT-x/AMD-V", "details report"), "%8") 1364 + QString (sSectionItemTpl).arg (tr ("PAE/NX", "details report"), "%9"); 1364 1365 1365 1366 sGeneralFullHrefTpl = QString (sSectionHrefTpl) 1366 .arg (2 + 8) /* rows */1367 .arg (2 + 9) /* rows */ 1367 1368 .arg (":/machine_16px.png", /* icon */ 1368 1369 "#general", /* link */ … … 1370 1371 generalItems); /* items */ 1371 1372 sGeneralFullBoldTpl = QString (sSectionBoldTpl) 1372 .arg (2 + 8) /* rows */1373 .arg (2 + 9) /* rows */ 1373 1374 .arg (":/machine_16px.png", /* icon */ 1374 1375 "#general", /* link */ … … 1487 1488 tr ("Disabled", "details report (VT-x/AMD-V)"); 1488 1489 1490 /* PAE/NX */ 1491 QString pae = m.GetPAEEnabled() 1492 ? tr ("Enabled", "details report (PAE/NX)") 1493 : tr ("Disabled", "details report (PAE/NX)"); 1494 1489 1495 /* General + Hard Disks */ 1490 1496 detailsReport … … 1498 1504 .arg (ioapic) 1499 1505 .arg (virt) 1506 .arg (pae) 1500 1507 + hardDisks; 1501 1508
Note:
See TracChangeset
for help on using the changeset viewer.