Changeset 33730 in vbox
- Timestamp:
- Nov 3, 2010 3:29:31 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/vm/VBoxVMSettingsSystem.cpp
r33686 r33730 263 263 m_cache.m_bootItems << data; 264 264 } 265 m_cache.m_fIoApicEnabled = mCbApic->isChecked() || mSlCPU->value() > 1; 265 m_cache.m_fIoApicEnabled = mCbApic->isChecked() || mSlCPU->value() > 1 || 266 (KChipsetType)mCbChipset->itemData(mCbChipset->currentIndex()).toInt() == KChipsetType_ICH9; 266 267 m_cache.m_fEFIEnabled = mCbEFI->isChecked(); 267 268 m_cache.m_fUTCEnabled = mCbTCUseUTC->isChecked(); … … 317 318 connect (mCbVirt, SIGNAL (stateChanged (int)), mValidator, SLOT (revalidate())); 318 319 connect (mCbUseAbsHID, SIGNAL (stateChanged (int)), mValidator, SLOT (revalidate())); 320 connect(mCbChipset, SIGNAL(currentIndexChanged(int)), mValidator, SLOT(revalidate())); 319 321 } 320 322 … … 382 384 "you have assigned more than one virtual CPU to this VM. " 383 385 "This will not work unless hardware virtualization (VT-x/AMD-V) is also enabled. " 386 "This will be done automatically when you accept the VM Settings " 387 "by pressing the OK button."); 388 return true; 389 } 390 391 /* Chipset type & IO-APIC test */ 392 if ((KChipsetType)mCbChipset->itemData(mCbChipset->currentIndex()).toInt() == KChipsetType_ICH9 && !mCbApic->isChecked()) 393 { 394 aWarning = tr ( 395 "you have assigned ICH9 chipset type to this VM. " 396 "It will not work properly unless the IO-APIC feature is also enabled. " 384 397 "This will be done automatically when you accept the VM Settings " 385 398 "by pressing the OK button.");
Note:
See TracChangeset
for help on using the changeset viewer.