Changeset 107758 in vbox
- Timestamp:
- Jan 14, 2025 1:36:10 PM (2 months ago)
- svn:sync-xref-src-repo-rev:
- 166870
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageCloud.cpp
r106061 r107758 1222 1222 /* First step*/ 1223 1223 RTPrintf(Cloud::tr("First, reading the cloud machines list...\n")); 1224 hrc =showProgress(progress);1224 showProgress(progress); 1225 1225 CHECK_PROGRESS_ERROR_RET(progress, (Cloud::tr("Reading the cloud machines list failed")), RTEXITCODE_FAILURE); 1226 1226 … … 1276 1276 CHECK_ERROR2_RET(hrc, pMachine, Refresh(pRefreshProgress.asOutParam()), RTEXITCODE_FAILURE); 1277 1277 1278 hrc =showProgress(pRefreshProgress);1278 showProgress(pRefreshProgress); 1279 1279 CHECK_PROGRESS_ERROR_RET(pRefreshProgress, (Cloud::tr("Refreshing information about cloud instance failed")), RTEXITCODE_FAILURE); 1280 1280 … … 1285 1285 CHECK_ERROR2_RET(hrc, pMachine, ListMetricNames(returnMetricNames.asOutParam(), progress2.asOutParam()), RTEXITCODE_FAILURE); 1286 1286 1287 hrc =showProgress(progress2);1287 showProgress(progress2); 1288 1288 CHECK_PROGRESS_ERROR_RET(progress, (Cloud::tr("Getting information about cloud instance metrics failed")), RTEXITCODE_FAILURE); 1289 1289 … … 1426 1426 CHECK_ERROR2_RET(hrc, oCloudClient, ReadCloudMachineList(progress.asOutParam()), RTEXITCODE_FAILURE); 1427 1427 1428 hrc =showProgress(progress);1428 showProgress(progress); 1429 1429 CHECK_PROGRESS_ERROR_RET(progress, (Cloud::tr("Reading the cloud machines list failed")), RTEXITCODE_FAILURE); 1430 1430 … … 1480 1480 CHECK_ERROR2_RET(hrc, pMachine, Refresh(pRefreshProgress.asOutParam()), RTEXITCODE_FAILURE); 1481 1481 1482 hrc =showProgress(pRefreshProgress);1482 showProgress(pRefreshProgress); 1483 1483 CHECK_PROGRESS_ERROR_RET(pRefreshProgress, (Cloud::tr("Refreshing information about cloud instance failed")), RTEXITCODE_FAILURE); 1484 1484 … … 1497 1497 progress2.asOutParam()), RTEXITCODE_FAILURE); 1498 1498 1499 hrc =showProgress(progress2);1499 showProgress(progress2); 1500 1500 CHECK_PROGRESS_ERROR_RET(progress2, (Cloud::tr("Getting metric data failed")), RTEXITCODE_FAILURE); 1501 1501 … … 2431 2431 RTEXITCODE_FAILURE); 2432 2432 2433 hrc =showProgress(pProgress);2433 showProgress(pProgress); 2434 2434 CHECK_PROGRESS_ERROR_RET(pProgress, (Cloud::tr("Getting information about the cloud image failed")), RTEXITCODE_FAILURE); 2435 2435 … … 2994 2994 RTEXITCODE_FAILURE); 2995 2995 2996 hrc =showProgress(progress);2996 showProgress(progress); 2997 2997 CHECK_PROGRESS_ERROR_RET(progress, (Cloud::tr("Setting up cloud network environment failed")), RTEXITCODE_FAILURE); 2998 2998
Note:
See TracChangeset
for help on using the changeset viewer.