Changeset 16101 in vbox for trunk/src/VBox
- Timestamp:
- Jan 20, 2009 9:14:24 PM (16 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxVMSettingsGeneral.h
r14339 r16101 60 60 void textChangedVRAM (const QString &aText); 61 61 62 void stateChangedVirt (int aState); 63 62 64 void moveBootItemUp(); 63 65 void moveBootItemDown(); -
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxVMSettingsGeneral.cpp
r16087 r16101 91 91 this, SLOT (onCurrentBootItemChanged (QTreeWidgetItem*, 92 92 QTreeWidgetItem*))); 93 connect (mCbVirt, SIGNAL (stateChanged (int)), 94 this, SLOT (stateChangedVirt (int))); 93 95 94 96 /* Setup iconsets */ … … 208 210 209 211 /* Nested Paging */ 210 mCbNestedPaging->setEnabled (fVTxAMDVSupported); 212 mCbNestedPaging->setEnabled ( fVTxAMDVSupported 213 && aMachine.GetHWVirtExEnabled() == KTSBool_True); 211 214 mCbNestedPaging->setChecked (aMachine.GetHWVirtExNestedPagingEnabled()); 212 215 … … 450 453 { 451 454 mSlVideo->setValue (aText.toInt()); 455 } 456 457 void VBoxVMSettingsGeneral::stateChangedVirt (int aState) 458 { 459 mCbNestedPaging->setEnabled (mCbVirt->checkState()); 452 460 } 453 461
Note:
See TracChangeset
for help on using the changeset viewer.