Changeset 56303 in vbox
- Timestamp:
- Jun 9, 2015 4:32:20 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIIndicatorsPool.cpp
r56260 r56303 852 852 QString strCPUExecCap = QString::number(machine.GetCPUExecutionCap()); 853 853 854 /* Paravirtualization feature: */ 855 const QString strParavirt = gpConverter->toString(machine.GetEffectiveParavirtProvider()); 856 854 857 /* Prepare tool-tip: */ 855 858 QString tip(QApplication::translate("UIIndicatorsPool", … … 858 861 "<br><nobr><b>%3:</b> %4</nobr>" 859 862 "<br><nobr><b>%5:</b> %6</nobr>" 860 "<br><nobr><b>%7:</b> %8%</nobr>", 863 "<br><nobr><b>%7:</b> %8</nobr>" 864 "<br><nobr><b>%9:</b> %10%</nobr>", 861 865 "Virtualization Stuff LED") 862 866 .arg(VBoxGlobal::tr("VT-x/AMD-V", "details report"), virtualization) 863 867 .arg(VBoxGlobal::tr("Nested Paging"), nestedPaging) 864 868 .arg(VBoxGlobal::tr("Unrestricted Execution"), unrestrictExec) 869 .arg(VBoxGlobal::tr("Paravirtualization Interface", "details report"), strParavirt) 865 870 .arg(VBoxGlobal::tr("Execution Cap", "details report"), strCPUExecCap)); 866 871
Note:
See TracChangeset
for help on using the changeset viewer.