Changeset 27591 in vbox
- Timestamp:
- Mar 22, 2010 1:56:29 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 59121
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp
r27427 r27591 1922 1922 CBIOSSettings biosSettings = aMachine.GetBIOSSettings(); 1923 1923 1924 /* System details row count: */ 1925 int iRowCount = 2; /* Memory & CPU details rows initially. */ 1926 1924 1927 /* Boot order */ 1925 1928 QString bootOrder; … … 1936 1939 bootOrder = toString (KDeviceType_Null); 1937 1940 1941 iRowCount += 1; /* Boot-order row. */ 1942 1938 1943 #ifdef VBOX_WITH_FULL_DETAILS_REPORT 1939 1944 /* ACPI */ … … 1951 1956 ? tr ("Enabled", "details report (PAE/NX)") 1952 1957 : tr ("Disabled", "details report (PAE/NX)"); 1958 1959 iRowCount += 3; /* Full report rows. */ 1953 1960 #endif /* VBOX_WITH_FULL_DETAILS_REPORT */ 1954 1961 … … 1962 1969 ? tr ("Enabled", "details report (Nested Paging)") 1963 1970 : tr ("Disabled", "details report (Nested Paging)"); 1971 1972 /* VT-x/AMD-V availability: */ 1973 bool fVTxAMDVSupported = virtualBox().GetHost().GetProcessorFeature(KProcessorFeature_HWVirtEx); 1974 1975 if (fVTxAMDVSupported) 1976 iRowCount += 2; /* VT-x/AMD-V items. */ 1964 1977 1965 1978 QString item = QString (sSectionItemTpl2).arg (tr ("Base Memory", "details report"), … … 1975 1988 + QString (sSectionItemTpl2).arg (tr ("PAE/NX", "details report"), pae) 1976 1989 #endif /* VBOX_WITH_FULL_DETAILS_REPORT */ 1977 + QString (sSectionItemTpl2).arg (tr ("VT-x/AMD-V", "details report"), virt)1978 + QString (sSectionItemTpl2).arg (tr ("Nested Paging", "details report"), nested)1979 1990 ; 1980 1991 1992 if (fVTxAMDVSupported) 1993 item += QString (sSectionItemTpl2).arg (tr ("VT-x/AMD-V", "details report"), virt) 1994 + QString (sSectionItemTpl2).arg (tr ("Nested Paging", "details report"), nested); 1995 1981 1996 report += sectionTpl 1982 #ifdef VBOX_WITH_FULL_DETAILS_REPORT 1983 .arg (2 + 8) /* rows */ 1984 #else 1985 .arg (2 + 5) /* rows */ 1986 #endif /* VBOX_WITH_FULL_DETAILS_REPORT */ 1997 .arg (2 + iRowCount) /* rows */ 1987 1998 .arg (":/chipset_16px.png", /* icon */ 1988 1999 "#system", /* link */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/vm/VBoxVMSettingsSystem.cpp
r27537 r27591 188 188 mCbPae->setChecked (aMachine.GetCPUProperty(KCPUPropertyType_PAE)); 189 189 190 /* VT-x/AMD-V page */ 191 if (!fVTxAMDVSupported) 192 mTwSystem->removeTab(2); 193 190 194 /* VT-x/AMD-V */ 191 195 mCbVirt->setEnabled (fVTxAMDVSupported); -
trunk/src/VBox/Frontends/VirtualBox/src/settings/vm/VBoxVMSettingsSystem.ui
r25686 r27591 406 406 <widget class="QIAdvancedSlider" name="mSlCPU"> 407 407 <property name="whatsThis"> 408 <string>Controls the number of virtual CPUs in the virtual machine. </string>408 <string>Controls the number of virtual CPUs in the virtual machine. You need hardware virtualization support on your host system to use more than one virtual CPU.</string> 409 409 </property> 410 410 <property name="maximum"> … … 479 479 </property> 480 480 <property name="whatsThis"> 481 <string>Controls the number of virtual CPUs in the virtual machine. </string>481 <string>Controls the number of virtual CPUs in the virtual machine. You need hardware virtualization support on your host system to use more than one virtual CPU.</string> 482 482 </property> 483 483 </widget>
Note:
See TracChangeset
for help on using the changeset viewer.