Changeset 74186 in vbox
- Timestamp:
- Sep 11, 2018 6:13:54 AM (6 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic3.cpp
r74139 r74186 67 67 ("Can't create Cloud Client object!")); 68 68 69 #ifndef VBOX_WITH_CLOUD_PROVIDERS_NO_COMMANDS 69 70 /* Read Cloud Client parameters for Export VM operation: */ 70 #ifndef VBOX_WITH_CLOUD_PROVIDERS_NO_COMMANDS 71 const QString strJSON = comCloudClient.GetOperationParameters(KCloudOperation_exportVM); 71 QString strJSON = comCloudClient.GetOperationParameters(KCloudOperation_exportVM); 72 72 #else 73 constQString strJSON = comCloudClient.GetExportParameters();73 QString strJSON = comCloudClient.GetExportParameters(); 74 74 #endif 75 75 -
trunk/src/VBox/Main/idl/VirtualBox.xidl
r74086 r74186 25043 25043 <desc>Initial set of parameter values.</desc> 25044 25044 </param> 25045 <param name="progress" type="IProgress" dir="in"> 25046 <desc>Progress object to track the operation completion.</desc> 25047 </param> 25045 25048 </method> 25046 25049 -
trunk/src/VBox/Main/src-server/ApplianceImpl.cpp
r73893 r74186 1036 1036 } 1037 1037 case ExportOCI: 1038 cOperations = 1 + 7; 1039 m->ulWeightForXmlOperation = 1; 1040 ulTotalOperationsWeight = 100; 1038 1041 break; 1039 1042 } -
trunk/src/VBox/Main/src-server/ApplianceImplExport.cpp
r74146 r74186 1013 1013 aProgress.createObject(); 1014 1014 #endif 1015 1015 1016 // Initialize our worker task 1016 1017 TaskOCI* task = NULL; … … 2460 2461 vrc = cloudClient->RunSeveralCommands(ComSafeArrayAsInParam(commandIdList), 2461 2462 ComSafeArrayAsInParam(paramNames), 2462 ComSafeArrayAsInParam(paramValues)); 2463 ComSafeArrayAsInParam(paramValues), 2464 pTask->pProgress); 2463 2465 if (RT_FAILURE(vrc)) 2464 2466 hrc = E_FAIL;
Note:
See TracChangeset
for help on using the changeset viewer.