Changeset 94144 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Mar 9, 2022 8:35:33 AM (3 years ago)
- 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 17 17 18 18 /* Qt includes: */ 19 #include <QComboBox> 19 20 #include <QGridLayout> 20 21 #include <QHBoxLayout> … … 22 23 23 24 /* GUI includes: */ 24 #include "QIComboBox.h"25 25 #include "UIColorThemeEditor.h" 26 26 #include "UIConverter.h" … … 101 101 { 102 102 /* Create combo: */ 103 m_pCombo = new Q IComboBox(this);103 m_pCombo = new QComboBox(this); 104 104 if (m_pCombo) 105 105 { … … 109 109 if (m_pLabel) 110 110 m_pLabel->setBuddy(m_pCombo->focusProxy()); 111 connect(m_pCombo, static_cast<void(Q IComboBox::*)(int)>(&QIComboBox::currentIndexChanged),111 connect(m_pCombo, static_cast<void(QComboBox::*)(int)>(&QComboBox::currentIndexChanged), 112 112 this, &UIColorThemeEditor::sltHandleCurrentIndexChanged); 113 113 pComboLayout->addWidget(m_pCombo); -
trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UIColorThemeEditor.h
r93990 r94144 31 31 32 32 /* Forward declarations: */ 33 class QComboBox; 33 34 class QLabel; 34 class QIComboBox;35 35 36 36 /** QWidget subclass used as a color theme editor. */ … … 81 81 QLabel *m_pLabel; 82 82 /** Holds the combo instance. */ 83 Q IComboBox*m_pCombo;83 QComboBox *m_pCombo; 84 84 }; 85 85
Note:
See TracChangeset
for help on using the changeset viewer.