Changeset 91411 in vbox for trunk/src/VBox
- Timestamp:
- Sep 27, 2021 4:35:46 PM (3 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/addcloudvm/UIWizardAddCloudVMPageExpert.cpp
r91410 r91411 200 200 201 201 /* Try to add cloud VMs: */ 202 fResult = qobject_cast<UIWizardAddCloudVM*>(wizard())->addCloudVMs();202 fResult = wizard()->addCloudVMs(); 203 203 204 204 /* Return result: */ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/addcloudvm/UIWizardAddCloudVMPageSource.cpp
r91410 r91411 452 452 453 453 /* Try to add cloud VMs: */ 454 fResult = qobject_cast<UIWizardAddCloudVM*>(wizard())->addCloudVMs();454 fResult = wizard()->addCloudVMs(); 455 455 456 456 /* Return result: */ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageExpert.cpp
r91410 r91411 308 308 if (fResult) 309 309 { 310 fResult = qobject_cast<UIWizardNewCloudVM*>(wizard())->createCloudVM();310 fResult = wizard()->createCloudVM(); 311 311 312 312 /* If the final step failed we could try … … 356 356 { 357 357 if (wizard()->vsdForm().isNull()) 358 qobject_cast<UIWizardNewCloudVM*>(wizard())->createVSDForm();358 wizard()->createVSDForm(); 359 359 updatePropertiesTable(); 360 360 emit completeChanged(); … … 392 392 wizard()->setVSD(createVirtualSystemDescription(wizard())); 393 393 populateFormProperties(wizard()->vsd(), m_pSourceTabBar, m_strSourceImageId); 394 qobject_cast<UIWizardNewCloudVM*>(wizard())->createVSDForm();394 wizard()->createVSDForm(); 395 395 updatePropertiesTable(); 396 396 } -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageProperties.cpp
r91410 r91411 143 143 if (fResult) 144 144 { 145 fResult = qobject_cast<UIWizardNewCloudVM*>(wizard())->createCloudVM();145 fResult = wizard()->createCloudVM(); 146 146 147 147 /* If the final step failed we could try … … 162 162 /* Create Virtual System Description Form: */ 163 163 if (wizard()->vsdForm().isNull()) 164 qobject_cast<UIWizardNewCloudVM*>(wizard())->createVSDForm();164 wizard()->createVSDForm(); 165 165 166 166 /* Refresh form properties table: */ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageSource.cpp
r91410 r91411 517 517 wizard()->setVSD(createVirtualSystemDescription(wizard())); 518 518 populateFormProperties(wizard()->vsd(), m_pSourceTabBar, m_strSourceImageId); 519 qobject_cast<UIWizardNewCloudVM*>(wizard())->createVSDForm();519 wizard()->createVSDForm(); 520 520 521 521 /* And make sure they are not NULL: */
Note:
See TracChangeset
for help on using the changeset viewer.