VirtualBox

Changeset 103180 in vbox


Ignore:
Timestamp:
Feb 2, 2024 5:26:54 PM (14 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
161443
Message:

FE/Qt: bugref:10384: VM settings / System page: Hiding chipset type editor for ARM host.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsSystem.cpp

    r103179 r103180  
    237237KChipsetType UIMachineSettingsSystem::chipsetType() const
    238238{
    239     return m_pEditorChipset->value();
     239    return   m_pEditorChipset
     240           ? m_pEditorChipset->value()
     241           : m_pCache->base().m_chipsetType;
    240242}
    241243
     
    405407    if (m_pEditorBootOrder)
    406408        newSystemData.m_bootItems = m_pEditorBootOrder->value();
    407     if (m_pEditorChipset)
    408         newSystemData.m_chipsetType = m_pEditorChipset->value();
     409    newSystemData.m_chipsetType = chipsetType();
    409410    if (m_pEditorTpm)
    410411        newSystemData.m_tpmType = m_pEditorTpm->value();
     
    412413        newSystemData.m_pointingHIDType = m_pEditorPointingHID->value();
    413414    if (   m_pEditorMotherboardFeatures
    414         && m_pEditorVCPU
    415         && m_pEditorChipset)
     415        && m_pEditorVCPU)
    416416        newSystemData.m_fEnabledIoApic =    m_pEditorMotherboardFeatures->isEnabledIoApic()
    417417                                         || m_pEditorVCPU->value() > 1
    418                                          || m_pEditorChipset->value() == KChipsetType_ICH9;
     418                                         || chipsetType() == KChipsetType_ICH9;
    419419    if (m_pEditorMotherboardFeatures)
    420420        newSystemData.m_fEnabledEFI = m_pEditorMotherboardFeatures->isEnabledEfi();
     
    494494
    495495        /* 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())
    497498        {
    498499            message.second << tr(
     
    634635    m_pEditorBaseMemory->setEnabled(isMachineOffline());
    635636    m_pEditorBootOrder->setEnabled(isMachineOffline());
    636     m_pEditorChipset->setEnabled(isMachineOffline());
     637    if (m_pEditorChipset)
     638        m_pEditorChipset->setEnabled(isMachineOffline());
    637639    m_pEditorTpm->setEnabled(isMachineOffline());
    638640    m_pEditorPointingHID->setEnabled(isMachineOffline());
     
    727729
    728730            /* Prepare chipset editor: */
     731#ifndef VBOX_WITH_VIRT_ARMV8
    729732            m_pEditorChipset = new UIChipsetEditor(m_pTabMotherboard);
     733#endif
    730734            if (m_pEditorChipset)
    731735            {
     
    859863{
    860864    /* 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);
    863868    connect(m_pEditorTpm, &UITpmEditor::sigValueChanged,
    864869            this, &UIMachineSettingsSystem::revalidate);
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette