VirtualBox

Changeset 94144 in vbox for trunk/src/VBox/Frontends


Ignore:
Timestamp:
Mar 9, 2022 8:35:33 AM (3 years ago)
Author:
vboxsync
Message:

FE/Qt: bugref:6899: VM settings: Get rid of QIComboBox objects for User Interface page, bit missing in r150300.

Location:
trunk/src/VBox/Frontends/VirtualBox/src/settings/editors
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UIColorThemeEditor.cpp

    r93115 r94144  
    1717
    1818/* Qt includes: */
     19#include <QComboBox>
    1920#include <QGridLayout>
    2021#include <QHBoxLayout>
     
    2223
    2324/* GUI includes: */
    24 #include "QIComboBox.h"
    2525#include "UIColorThemeEditor.h"
    2626#include "UIConverter.h"
     
    101101        {
    102102            /* Create combo: */
    103             m_pCombo = new QIComboBox(this);
     103            m_pCombo = new QComboBox(this);
    104104            if (m_pCombo)
    105105            {
     
    109109                if (m_pLabel)
    110110                    m_pLabel->setBuddy(m_pCombo->focusProxy());
    111                 connect(m_pCombo, static_cast<void(QIComboBox::*)(int)>(&QIComboBox::currentIndexChanged),
     111                connect(m_pCombo, static_cast<void(QComboBox::*)(int)>(&QComboBox::currentIndexChanged),
    112112                        this, &UIColorThemeEditor::sltHandleCurrentIndexChanged);
    113113                pComboLayout->addWidget(m_pCombo);
  • trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UIColorThemeEditor.h

    r93990 r94144  
    3131
    3232/* Forward declarations: */
     33class QComboBox;
    3334class QLabel;
    34 class QIComboBox;
    3535
    3636/** QWidget subclass used as a color theme editor. */
     
    8181    QLabel     *m_pLabel;
    8282    /** Holds the combo instance. */
    83     QIComboBox *m_pCombo;
     83    QComboBox *m_pCombo;
    8484};
    8585
Note: See TracChangeset for help on using the changeset viewer.

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