- Timestamp:
- Jul 23, 2019 11:33:58 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageCloud.cpp
r79942 r79943 535 535 ComPtr<IProgress> progress; 536 536 CHECK_ERROR2_RET(hrc, oCloudClient, 537 GetInstanceInfo(Bstr(strInstanceId .c_str()).raw(), instanceDescription, progress.asOutParam()),537 GetInstanceInfo(Bstr(strInstanceId).raw(), instanceDescription, progress.asOutParam()), 538 538 RTEXITCODE_FAILURE); 539 539 … … 638 638 ComPtr<IProgress> progress; 639 639 CHECK_ERROR2_RET(hrc, oCloudClient, 640 StartInstance(Bstr(strInstanceId .c_str()).raw(), progress.asOutParam()),640 StartInstance(Bstr(strInstanceId).raw(), progress.asOutParam()), 641 641 RTEXITCODE_FAILURE); 642 642 hrc = showProgress(progress); … … 697 697 ComPtr<IProgress> progress; 698 698 CHECK_ERROR2_RET(hrc, oCloudClient, 699 PauseInstance(Bstr(strInstanceId .c_str()).raw(), progress.asOutParam()),699 PauseInstance(Bstr(strInstanceId).raw(), progress.asOutParam()), 700 700 RTEXITCODE_FAILURE); 701 701 hrc = showProgress(progress); … … 756 756 ComPtr<IProgress> progress; 757 757 CHECK_ERROR2_RET(hrc, oCloudClient, 758 TerminateInstance(Bstr(strInstanceId .c_str()).raw(), progress.asOutParam()),758 TerminateInstance(Bstr(strInstanceId).raw(), progress.asOutParam()), 759 759 RTEXITCODE_FAILURE); 760 760 hrc = showProgress(progress); … … 1111 1111 ComPtr<IProgress> progress; 1112 1112 CHECK_ERROR2_RET(hrc, oCloudClient, 1113 ImportImage(Bstr(strImageId .c_str()).raw(), pVirtualBox, ComSafeArrayAsInParam(parameters), progress.asOutParam()),1113 ImportImage(Bstr(strImageId).raw(), pVirtualBox, ComSafeArrayAsInParam(parameters), progress.asOutParam()), 1114 1114 RTEXITCODE_FAILURE); 1115 1115 hrc = showProgress(progress); … … 1175 1175 RTPrintf("Reply is in the form \'image property\' = \'value\'\n"); 1176 1176 CHECK_ERROR2_RET(hrc, oCloudClient, 1177 GetImageInfo(Bstr(strImageId .c_str()).raw(),1177 GetImageInfo(Bstr(strImageId).raw(), 1178 1178 infoArray.asOutParam(), 1179 1179 pProgress.asOutParam()), … … 1261 1261 ComPtr<IProgress> progress; 1262 1262 CHECK_ERROR2_RET(hrc, oCloudClient, 1263 DeleteImage(Bstr(strImageId .c_str()).raw(), progress.asOutParam()),1263 DeleteImage(Bstr(strImageId).raw(), progress.asOutParam()), 1264 1264 RTEXITCODE_FAILURE); 1265 1265 hrc = showProgress(progress);
Note:
See TracChangeset
for help on using the changeset viewer.