Changeset 86346 in vbox for trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageBasic1.h
- Timestamp:
- Sep 30, 2020 1:02:39 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageBasic1.h
r86343 r86346 52 52 }; 53 53 54 /** Accountcombo data fields. */54 /** Profile combo data fields. */ 55 55 enum 56 56 { 57 AccountData_ProfileName = Qt::UserRole + 157 ProfileData_Name = Qt::UserRole + 1 58 58 }; 59 59 … … 68 68 /** Populates locations. */ 69 69 void populateLocations(); 70 /** Populates accounts. */71 void populate Accounts();72 /** Populates account. */73 void populate Account();70 /** Populates profiles. */ 71 void populateProfiles(); 72 /** Populates profile. */ 73 void populateProfile(); 74 74 /** Populates source images. */ 75 75 void populateSourceImages(); … … 122 122 QIComboBox *m_pLocationComboBox; 123 123 124 /** Holds the accountlabel instance. */125 QLabel *m_p AccountLabel;126 /** Holds the accountcombo-box instance. */127 QIComboBox *m_p AccountComboBox;128 /** Holds the accountmanagement tool-button instance. */129 QIToolButton *m_p AccountToolButton;124 /** Holds the profile label instance. */ 125 QLabel *m_pProfileLabel; 126 /** Holds the profile combo-box instance. */ 127 QIComboBox *m_pProfileComboBox; 128 /** Holds the profile management tool-button instance. */ 129 QIToolButton *m_pProfileToolButton; 130 130 /** Holds the source image label instance. */ 131 131 QLabel *m_pSourceImageLabel; … … 170 170 void sltHandleLocationChange(); 171 171 172 /** Handles change in accountcombo-box. */173 void sltHandle AccountComboChange();172 /** Handles change in profile combo-box. */ 173 void sltHandleProfileComboChange(); 174 174 175 /** Handles accounttool-button click. */176 void sltHandle AccountButtonClick();175 /** Handles profile tool-button click. */ 176 void sltHandleProfileButtonClick(); 177 177 178 178 /** Handles change in source tab-bar. */
Note:
See TracChangeset
for help on using the changeset viewer.