Changeset 94027 in vbox for trunk/src/VBox
- Timestamp:
- Mar 1, 2022 11:03:06 AM (3 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/medium/UIMediumSearchWidget.cpp
r93115 r94027 17 17 18 18 /* Qt includes: */ 19 #include <QComboBox> 19 20 #include <QLineEdit> 20 21 #include <QPushButton> … … 23 24 24 25 /* GUI includes: */ 25 #include "QIComboBox.h"26 26 #include "QIToolButton.h" 27 27 #include "QITreeWidget.h" … … 98 98 pLayout->setSpacing(0); 99 99 100 m_pSearchComboxBox = new Q IComboBox;100 m_pSearchComboxBox = new QComboBox; 101 101 if (m_pSearchComboxBox) 102 102 { … … 106 106 pLayout->addWidget(m_pSearchComboxBox); 107 107 108 connect(m_pSearchComboxBox, static_cast<void(Q IComboBox::*)(int)>(&QIComboBox::currentIndexChanged),108 connect(m_pSearchComboxBox, static_cast<void(QComboBox::*)(int)>(&QComboBox::currentIndexChanged), 109 109 this, &UIMediumSearchWidget::sigPerformSearch); 110 110 -
trunk/src/VBox/Frontends/VirtualBox/src/medium/UIMediumSearchWidget.h
r93990 r94027 26 26 27 27 /* Forward declarations: */ 28 class QComboBox; 28 29 class QTreeWidgetItem; 29 class QIComboBox;30 30 class QIToolButton; 31 31 class QITreeWidget; … … 82 82 void updateSearchLineEdit(int iMatchCount, int iScrollToIndex); 83 83 84 Q IComboBox*m_pSearchComboxBox;84 QComboBox *m_pSearchComboxBox; 85 85 UISearchLineEdit *m_pSearchTermLineEdit; 86 86 QIToolButton *m_pShowNextMatchButton; -
trunk/src/VBox/Frontends/VirtualBox/src/networkmanager/UIDetailsWidgetCloudNetwork.cpp
r93996 r94027 18 18 /* Qt includes: */ 19 19 #include <QCheckBox> 20 #include <QComboBox> 20 21 #include <QFontMetrics> 21 22 #include <QGroupBox> … … 27 28 28 29 /* GUI includes: */ 29 #include "QIComboBox.h"30 30 #include "QIDialogButtonBox.h" 31 31 #include "QILineEdit.h" … … 394 394 } 395 395 /* Prepare cloud provider name combo: */ 396 m_pComboProviderName = new Q IComboBox(this);396 m_pComboProviderName = new QComboBox(this); 397 397 if (m_pComboProviderName) 398 398 { 399 399 if (m_pLabelProviderName) 400 400 m_pLabelProviderName->setBuddy(m_pComboProviderName); 401 connect(m_pComboProviderName, static_cast<void(Q IComboBox::*)(int)>(&QIComboBox::currentIndexChanged),401 connect(m_pComboProviderName, static_cast<void(QComboBox::*)(int)>(&QComboBox::currentIndexChanged), 402 402 this, &UIDetailsWidgetCloudNetwork::sltCloudProviderNameChanged); 403 403 … … 413 413 } 414 414 /* Prepare cloud profile name combo: */ 415 m_pComboProfileName = new Q IComboBox(this);415 m_pComboProfileName = new QComboBox(this); 416 416 if (m_pComboProfileName) 417 417 { 418 418 if (m_pLabelProfileName) 419 419 m_pLabelProfileName->setBuddy(m_pComboProfileName); 420 connect(m_pComboProfileName, static_cast<void(Q IComboBox::*)(int)>(&QIComboBox::currentIndexChanged),420 connect(m_pComboProfileName, static_cast<void(QComboBox::*)(int)>(&QComboBox::currentIndexChanged), 421 421 this, &UIDetailsWidgetCloudNetwork::sltCloudProfileNameChanged); 422 422 -
trunk/src/VBox/Frontends/VirtualBox/src/networkmanager/UIDetailsWidgetCloudNetwork.h
r93990 r94027 37 37 class QAbstractButton; 38 38 class QCheckBox; 39 class QComboBox; 39 40 class QGridLayout; 40 41 class QGroupBox; … … 42 43 class QLineEdit; 43 44 class QRadioButton; 44 class QIComboBox;45 45 class QIDialogButtonBox; 46 46 class QILineEdit; … … 270 270 QLabel *m_pLabelProviderName; 271 271 /** Holds the cloud provider name combo instance. */ 272 Q IComboBox*m_pComboProviderName;272 QComboBox *m_pComboProviderName; 273 273 /** Holds the cloud profile name label instance. */ 274 274 QLabel *m_pLabelProfileName; 275 275 /** Holds the cloud profile name combo instance. */ 276 Q IComboBox*m_pComboProfileName;276 QComboBox *m_pComboProfileName; 277 277 /** Holds the network id label instance. */ 278 278 QLabel *m_pLabelNetworkId;
Note:
See TracChangeset
for help on using the changeset viewer.