Changeset 88108 in vbox
- Timestamp:
- Mar 12, 2021 2:16:01 PM (4 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageBasic1.cpp
r88107 r88108 413 413 : UIWizardNewVMPage1(strGroup) 414 414 , m_pNameOSTypeLabel(0) 415 , m_pUnattendedLabel(0)416 415 { 417 416 prepare(); … … 431 430 /* Prepare Name and OS Type editor: */ 432 431 pPageLayout->addWidget(createNameOSTypeWidgets()); 433 434 /* Prepare Unattended description label: */435 m_pUnattendedLabel = new QIRichTextLabel(this);436 if (m_pUnattendedLabel)437 pPageLayout->addWidget(m_pUnattendedLabel);438 439 432 pPageLayout->addStretch(); 440 433 } … … 504 497 setTitle(UIWizardNewVM::tr("Virtual machine name and operating system")); 505 498 506 if (m_pUnattendedLabel)507 m_pUnattendedLabel->setText(UIWizardNewVM::tr("Please decide whether you want to start an unattended guest OS install "508 "in which case you will have to select a valid installation medium."));509 510 499 if (m_pNameOSTypeLabel) 511 500 m_pNameOSTypeLabel->setText(UIWizardNewVM::tr("Please choose a descriptive name and destination folder for the new virtual machine. " -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageBasic1.h
r88107 r88108 164 164 * @{ */ 165 165 QIRichTextLabel *m_pNameOSTypeLabel; 166 QIRichTextLabel *m_pUnattendedLabel;167 166 /** @} */ 168 167 }; -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageExpert.cpp
r88107 r88108 50 50 : UIWizardNewVMPage1(strGroup) 51 51 , m_pToolBox(0) 52 , m_pInstallationISOGroupBox(0)53 52 , m_pDiskFormatGroupBox(0) 54 53 , m_pDiskVariantGroupBox(0) … … 162 161 UIWizardNewVDPage3::retranslateWidgets(); 163 162 164 if (m_pInstallationISOGroupBox)165 m_pInstallationISOGroupBox->setTitle(UIWizardNewVM::tr("Installation medium (ISO)"));166 163 if (m_pToolBox) 167 164 { … … 345 342 pLayout->setContentsMargins(0, 0, 0, 0); 346 343 int iRow = 0; 347 348 /* Installation medium selector etc: */349 {350 m_pInstallationISOGroupBox = new QGroupBox;351 pLayout->addWidget(m_pInstallationISOGroupBox, iRow++, 0, 1, 4);352 }353 344 354 345 /* Username selector: */ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageExpert.h
r88038 r88108 142 142 * @{ */ 143 143 UIToolBox *m_pToolBox; 144 QGroupBox *m_pInstallationISOGroupBox;145 144 QGroupBox *m_pDiskFormatGroupBox; 146 145 QGroupBox *m_pDiskVariantGroupBox;
Note:
See TracChangeset
for help on using the changeset viewer.