Changeset 80012 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jul 26, 2019 3:43:23 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 132447
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/ApplianceImplExport.cpp
r79597 r80012 2265 2265 hrc = mVirtualBox->COMGETTER(CloudProviderManager)(cpm.asOutParam()); 2266 2266 if (FAILED(hrc)) 2267 return setErrorVrc(VERR_COM_OBJECT_NOT_FOUND, tr("%: Cloud provider manager object wasn't found" , __FUNCTION__));2267 return setErrorVrc(VERR_COM_OBJECT_NOT_FOUND, tr("%: Cloud provider manager object wasn't found"), __FUNCTION__); 2268 2268 2269 2269 Utf8Str strProviderName = pTask->locInfo.strProvider; … … 2273 2273 2274 2274 if (FAILED(hrc)) 2275 return setErrorVrc(VERR_COM_OBJECT_NOT_FOUND, tr("%s: Cloud provider object wasn't found" , __FUNCTION__));2275 return setErrorVrc(VERR_COM_OBJECT_NOT_FOUND, tr("%s: Cloud provider object wasn't found"), __FUNCTION__); 2276 2276 2277 2277 ComPtr<IVirtualSystemDescription> vsd = m->virtualSystemDescriptions.front(); … … 2294 2294 Utf8Str profileName(aVBoxValues[0]); 2295 2295 if (profileName.isEmpty()) 2296 return setErrorVrc(VBOX_E_OBJECT_NOT_FOUND, tr("%s: Cloud user profile name wasn't found" , __FUNCTION__));2296 return setErrorVrc(VBOX_E_OBJECT_NOT_FOUND, tr("%s: Cloud user profile name wasn't found"), __FUNCTION__); 2297 2297 2298 2298 hrc = cloudProvider->GetProfileByName(aVBoxValues[0], cloudProfile.asOutParam()); 2299 2299 if (FAILED(hrc)) 2300 return setErrorVrc(VERR_COM_OBJECT_NOT_FOUND, tr("%s: Cloud profile object wasn't found" , __FUNCTION__));2300 return setErrorVrc(VERR_COM_OBJECT_NOT_FOUND, tr("%s: Cloud profile object wasn't found"), __FUNCTION__); 2301 2301 2302 2302 ComObjPtr<ICloudClient> cloudClient; 2303 2303 hrc = cloudProfile->CreateCloudClient(cloudClient.asOutParam()); 2304 2304 if (FAILED(hrc)) 2305 return setErrorVrc(VERR_COM_OBJECT_NOT_FOUND, tr("%s: Cloud client object wasn't found" , __FUNCTION__));2305 return setErrorVrc(VERR_COM_OBJECT_NOT_FOUND, tr("%s: Cloud client object wasn't found"), __FUNCTION__); 2306 2306 2307 2307 if (m->virtualSystemDescriptions.size() == 1)
Note:
See TracChangeset
for help on using the changeset viewer.