- Timestamp:
- Dec 10, 2020 8:03:03 AM (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
r87073 r87081 278 278 } 279 279 280 void UIWizardNewVMPage1::addLine(QBoxLayout *pLayout) 281 { 282 QFrame *line = new QFrame; 283 line->setFrameShape(QFrame::HLine); 284 line->setFrameShadow(QFrame::Sunken); 285 pLayout->addWidget(line); 286 } 287 280 288 void UIWizardNewVMPage1::createNameOSTypeWidgets(QVBoxLayout *pLayout, bool fCreateLabels /* = true */) 281 289 { … … 292 300 if (m_pNameAndFolderEditor) 293 301 pLayout->addWidget(m_pNameAndFolderEditor); 302 303 addLine(pLayout); 294 304 295 305 if (fCreateLabels) … … 330 340 } 331 341 pLayout->addLayout(pUnattendedInstall); 342 addLine(pLayout); 332 343 m_pSystemTypeEditor = new UINameAndSystemEditor(0, false, false, true); 333 344 if (m_pSystemTypeEditor) -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageBasic1.h
r87073 r87081 26 26 27 27 /* Forward declarations: */ 28 class QBoxLayout; 28 29 class QCheckBox; 29 30 class QLabel; … … 102 103 103 104 bool checkISOFile() const; 105 void addLine(QBoxLayout *pLayout); 104 106 105 107 /** Full path (including the file name) of the machine's configuration file. */
Note:
See TracChangeset
for help on using the changeset viewer.