Changeset 103180 in vbox
- Timestamp:
- Feb 2, 2024 5:26:54 PM (14 months ago)
- svn:sync-xref-src-repo-rev:
- 161443
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsSystem.cpp
r103179 r103180 237 237 KChipsetType UIMachineSettingsSystem::chipsetType() const 238 238 { 239 return m_pEditorChipset->value(); 239 return m_pEditorChipset 240 ? m_pEditorChipset->value() 241 : m_pCache->base().m_chipsetType; 240 242 } 241 243 … … 405 407 if (m_pEditorBootOrder) 406 408 newSystemData.m_bootItems = m_pEditorBootOrder->value(); 407 if (m_pEditorChipset) 408 newSystemData.m_chipsetType = m_pEditorChipset->value(); 409 newSystemData.m_chipsetType = chipsetType(); 409 410 if (m_pEditorTpm) 410 411 newSystemData.m_tpmType = m_pEditorTpm->value(); … … 412 413 newSystemData.m_pointingHIDType = m_pEditorPointingHID->value(); 413 414 if ( m_pEditorMotherboardFeatures 414 && m_pEditorVCPU 415 && m_pEditorChipset) 415 && m_pEditorVCPU) 416 416 newSystemData.m_fEnabledIoApic = m_pEditorMotherboardFeatures->isEnabledIoApic() 417 417 || m_pEditorVCPU->value() > 1 418 || m_pEditorChipset->value() == KChipsetType_ICH9;418 || chipsetType() == KChipsetType_ICH9; 419 419 if (m_pEditorMotherboardFeatures) 420 420 newSystemData.m_fEnabledEFI = m_pEditorMotherboardFeatures->isEnabledEfi(); … … 494 494 495 495 /* Chipset type vs IO-APIC test: */ 496 if (m_pEditorChipset->value() == KChipsetType_ICH9 && !m_pEditorMotherboardFeatures->isEnabledIoApic()) 496 if ( chipsetType() == KChipsetType_ICH9 497 && !m_pEditorMotherboardFeatures->isEnabledIoApic()) 497 498 { 498 499 message.second << tr( … … 634 635 m_pEditorBaseMemory->setEnabled(isMachineOffline()); 635 636 m_pEditorBootOrder->setEnabled(isMachineOffline()); 636 m_pEditorChipset->setEnabled(isMachineOffline()); 637 if (m_pEditorChipset) 638 m_pEditorChipset->setEnabled(isMachineOffline()); 637 639 m_pEditorTpm->setEnabled(isMachineOffline()); 638 640 m_pEditorPointingHID->setEnabled(isMachineOffline()); … … 727 729 728 730 /* Prepare chipset editor: */ 731 #ifndef VBOX_WITH_VIRT_ARMV8 729 732 m_pEditorChipset = new UIChipsetEditor(m_pTabMotherboard); 733 #endif 730 734 if (m_pEditorChipset) 731 735 { … … 859 863 { 860 864 /* Configure 'Motherboard' connections: */ 861 connect(m_pEditorChipset, &UIChipsetEditor::sigValueChanged, 862 this, &UIMachineSettingsSystem::revalidate); 865 if (m_pEditorChipset) 866 connect(m_pEditorChipset, &UIChipsetEditor::sigValueChanged, 867 this, &UIMachineSettingsSystem::revalidate); 863 868 connect(m_pEditorTpm, &UITpmEditor::sigValueChanged, 864 869 this, &UIMachineSettingsSystem::revalidate);
Note:
See TracChangeset
for help on using the changeset viewer.