Changeset 88109 in vbox
- Timestamp:
- Mar 12, 2021 5:14:38 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
r88108 r88109 181 181 : m_pNameAndSystemEditor(0) 182 182 , m_pISOPathSelectorLabel(0) 183 , m_pSkipUnattendedCheckBox(0) 183 184 , m_strGroup(strGroup) 184 185 { … … 348 349 void UIWizardNewVMPage1::retranslateWidgets() 349 350 { 351 if (m_pSkipUnattendedCheckBox) 352 { 353 m_pSkipUnattendedCheckBox->setText(UIWizardNewVM::tr("Skip unattended installation")); 354 m_pSkipUnattendedCheckBox->setToolTip(UIWizardNewVM::tr("<p>When checked selected ISO file will be mounted to the CD drive " 355 "of the virtual machine but the unattended installation will " 356 "not start</p>")); 357 } 350 358 } 351 359 … … 430 438 /* Prepare Name and OS Type editor: */ 431 439 pPageLayout->addWidget(createNameOSTypeWidgets()); 440 441 m_pSkipUnattendedCheckBox = new QCheckBox; 442 pPageLayout->addWidget(m_pSkipUnattendedCheckBox); 443 432 444 pPageLayout->addStretch(); 433 445 } -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageBasic1.h
r88108 r88109 89 89 UINameAndSystemEditor *m_pNameAndSystemEditor; 90 90 QLabel *m_pISOPathSelectorLabel; 91 QCheckBox *m_pSkipUnattendedCheckBox; 91 92 /** @} */ 92 93
Note:
See TracChangeset
for help on using the changeset viewer.