Changeset 79816 in vbox for trunk/src/VBox
- Timestamp:
- Jul 16, 2019 5:38:52 PM (5 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportApp.cpp
r79699 r79816 331 331 CVirtualSystemDescription comDescription = field("vsd").value<CVirtualSystemDescription>(); 332 332 /* Create and run wizard as modal dialog, but prevent final step: */ 333 pNewCloudVMWizard = new UIWizardNewCloudVM(this, comClient, comDescription );333 pNewCloudVMWizard = new UIWizardNewCloudVM(this, comClient, comDescription, mode()); 334 334 pNewCloudVMWizard->setFinalStepPrevented(true); 335 335 pNewCloudVMWizard->prepare(); … … 392 392 /* Create and run short wizard mode as modal dialog: */ 393 393 QWidget *pWizardParent = windowManager().realParentWindow(this); 394 pNewCloudVMWizard = new UIWizardNewCloudVM(pWizardParent, comClient, comDescription );394 pNewCloudVMWizard = new UIWizardNewCloudVM(pWizardParent, comClient, comDescription, mode()); 395 395 windowManager().registerNewParent(pNewCloudVMWizard, pWizardParent); 396 396 pNewCloudVMWizard->prepare(); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVM.cpp
r79700 r79816 32 32 UIWizardNewCloudVM::UIWizardNewCloudVM(QWidget *pParent, 33 33 const CCloudClient &comClient /* = CCloudClient() */, 34 const CVirtualSystemDescription &comDescription /* = CVirtualSystemDescription() */) 35 : UIWizard(pParent, WizardType_NewCloudVM) 34 const CVirtualSystemDescription &comDescription /* = CVirtualSystemDescription() */, 35 WizardMode enmMode /* = WizardMode_Auto */) 36 : UIWizard(pParent, WizardType_NewCloudVM, enmMode) 36 37 , m_comClient(comClient) 37 38 , m_comVSD(comDescription) -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVM.h
r79682 r79816 56 56 UIWizardNewCloudVM(QWidget *pParent, 57 57 const CCloudClient &comClient = CCloudClient(), 58 const CVirtualSystemDescription &comDescription = CVirtualSystemDescription()); 58 const CVirtualSystemDescription &comDescription = CVirtualSystemDescription(), 59 WizardMode enmMode = WizardMode_Auto); 59 60 60 61 /** Prepares all. */
Note:
See TracChangeset
for help on using the changeset viewer.