Changeset 91893 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Oct 20, 2021 1:02:11 PM (3 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportApp.cpp
r91878 r91893 333 333 } 334 334 335 bool UIWizardExportApp::createVsdLaunchForm() 336 { 337 /* Prepare result: */ 338 bool fResult = false; 339 335 void UIWizardExportApp::createVsdLaunchForm() 336 { 340 337 /* Acquire prepared client and description: */ 341 338 CCloudClient comClient = cloudClient(); 342 339 CVirtualSystemDescription comVSD = vsd(); 343 AssertReturn (comClient.isNotNull() && comVSD.isNotNull(), false);340 AssertReturnVoid(comClient.isNotNull() && comVSD.isNotNull()); 344 341 345 342 /* Get Launch description form: */ … … 370 367 // Premature application shutdown, 371 368 // exit immediately: 372 return fResult;369 return; 373 370 } 374 371 } … … 385 382 /* Remember Virtual System Description Form: */ 386 383 setVsdLaunchForm(comForm); 387 388 /* Finally, success: */389 fResult = true;390 384 } 391 385 } 392 386 } 393 394 /* Return result: */395 return fResult;396 387 } 397 388 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportApp.h
r91467 r91893 170 170 171 171 /** Creates VSD Form. */ 172 boolcreateVsdLaunchForm();172 void createVsdLaunchForm(); 173 173 174 174 /** Creates New Cloud VM. */
Note:
See TracChangeset
for help on using the changeset viewer.