Changeset 72931 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Jul 6, 2018 11:26:56 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 123483
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic3.cpp
r72930 r72931 362 362 } 363 363 364 /* Create advanced label: */ 365 m_pAdditionalLabel = new QLabel; 366 if (m_pAdditionalLabel) 367 { 368 m_pAdditionalLabel->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter); 369 370 /* Add into layout: */ 371 pSettingsLayout->addWidget(m_pAdditionalLabel, 6, 0); 372 } 373 /* Create manifest check-box: */ 374 m_pManifestCheckbox = new QCheckBox; 375 if (m_pManifestCheckbox) 376 { 377 /* Add into layout: */ 378 pSettingsLayout->addWidget(m_pManifestCheckbox, 6, 1); 379 } 380 364 381 /* Add into layout: */ 365 382 pMainLayout->addLayout(pSettingsLayout); 366 }367 368 /* Create manifest check-box: */369 m_pManifestCheckbox = new QCheckBox;370 if (m_pManifestCheckbox)371 {372 /* Add into layout: */373 pMainLayout->addWidget(m_pManifestCheckbox);374 383 } 375 384 … … 425 434 m_pFormatComboBox->setItemData(2, UIWizardExportApp::tr("Write in new OVF 2.0 format."), Qt::ToolTipRole); 426 435 m_pFormatComboBox->setItemData(3, UIWizardExportApp::tr("Write in Oracle Public Cloud 1.0 format."), Qt::ToolTipRole); 436 m_pAdditionalLabel->setText(UIWizardExportApp::tr("Additionally:")); 427 437 m_pManifestCheckbox->setToolTip(UIWizardExportApp::tr("Create a Manifest file for automatic data integrity checks on import.")); 428 438 m_pManifestCheckbox->setText(UIWizardExportApp::tr("Write &Manifest file")); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic3.h
r72920 r72931 118 118 QComboBox *m_pFormatComboBox; 119 119 120 /** Holds the additional label instance. */ 121 QLabel *m_pAdditionalLabel; 120 122 /** Holds the manifest check-box instance. */ 121 123 QCheckBox *m_pManifestCheckbox;
Note:
See TracChangeset
for help on using the changeset viewer.