Changeset 94059 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Mar 2, 2022 2:41:57 PM (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/UIUpdateSettingsEditor.cpp
r93986 r94059 19 19 #include <QButtonGroup> 20 20 #include <QCheckBox> 21 #include <QComboBox> 21 22 #include <QGridLayout> 22 23 #include <QLabel> … … 24 25 25 26 /* GUI includes: */ 26 #include "QIComboBox.h"27 27 #include "UIUpdateSettingsEditor.h" 28 28 … … 198 198 } 199 199 /* Prepare update period combo: */ 200 m_pComboUpdatePeriod = new Q IComboBox(m_pWidgetUpdateSettings);200 m_pComboUpdatePeriod = new QComboBox(m_pWidgetUpdateSettings); 201 201 if (m_pComboUpdatePeriod) 202 202 { … … 266 266 connect(m_pCheckBox, &QCheckBox::toggled, this, &UIUpdateSettingsEditor::sltHandleUpdateToggle); 267 267 if (m_pComboUpdatePeriod) 268 connect(m_pComboUpdatePeriod, static_cast<void(Q IComboBox::*)(int)>(&QIComboBox::activated),268 connect(m_pComboUpdatePeriod, static_cast<void(QComboBox::*)(int)>(&QComboBox::activated), 269 269 this, &UIUpdateSettingsEditor::sltHandleUpdatePeriodChange); 270 270 } -
trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UIUpdateSettingsEditor.h
r93990 r94059 33 33 class QButtonGroup; 34 34 class QCheckBox; 35 class QComboBox; 35 36 class QLabel; 36 class QIComboBox;37 37 38 38 /** QWidget subclass used as a update settings editor. */ … … 83 83 * @{ */ 84 84 /** Holds the update check-box instance. */ 85 QCheckBox 85 QCheckBox *m_pCheckBox; 86 86 /** Holds the update settings widget instance. */ 87 QWidget 87 QWidget *m_pWidgetUpdateSettings; 88 88 /** Holds the update period label instance. */ 89 QLabel 89 QLabel *m_pLabelUpdatePeriod; 90 90 /** Holds the update period combo instance. */ 91 Q IComboBox*m_pComboUpdatePeriod;91 QComboBox *m_pComboUpdatePeriod; 92 92 /** Holds the update date label instance. */ 93 QLabel 93 QLabel *m_pLabelUpdateDate; 94 94 /** Holds the update date field instance. */ 95 QLabel 95 QLabel *m_pFieldUpdateDate; 96 96 /** Holds the update filter label instance. */ 97 QLabel 97 QLabel *m_pLabelUpdateFilter; 98 98 99 99 /** Holds the radio button group instance. */
Note:
See TracChangeset
for help on using the changeset viewer.