Changeset 87368 in vbox
- Timestamp:
- Jan 22, 2021 1:34:44 PM (4 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageBasic1.cpp
r87348 r87368 278 278 } 279 279 280 QFrame *UIWizardNewVMPage1::horizontalLine()281 {282 QFrame *line = new QFrame;283 line->setFrameShape(QFrame::HLine);284 line->setFrameShadow(QFrame::Sunken);285 return line;286 }287 288 280 QWidget *UIWizardNewVMPage1::createNameOSTypeWidgets(bool fCreateUnattendedWidgets, 289 281 bool fCreateLabels) … … 303 295 if (m_pNameAndSystemEditor) 304 296 pLayout->addWidget(m_pNameAndSystemEditor, iRow++, 0, 1, 6); 305 306 pLayout->addWidget(horizontalLine(), iRow++, 0, 1, 6);307 297 308 298 if (fCreateLabels) … … 339 329 pLayout->addWidget(m_pStartHeadlessCheckBox, iRow++, 1, 1, 5); 340 330 } 341 342 pLayout->addWidget(horizontalLine(), iRow++, 0, 1, 4);343 331 } 344 332 return pContainer; -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageBasic1.h
r87322 r87368 105 105 /** Return false if ISO path is not empty but points to an missing or unreadable file. */ 106 106 bool checkISOFile() const; 107 QFrame *horizontalLine();108 107 109 108 /** Full path (including the file name) of the machine's configuration file. */
Note:
See TracChangeset
for help on using the changeset viewer.