Changeset 107580 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jan 9, 2025 10:11:24 AM (4 months ago)
- svn:sync-xref-src-repo-rev:
- 166653
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/CloudGateway.cpp
r106061 r107580 190 190 HRESULT hrc = S_OK; 191 191 192 try { 192 try 193 { 193 194 hrc = network->COMGETTER(Provider)(gateway.mCloudProvider.asOutParam()); 195 AssertComRCBreakRC(hrc); 194 196 hrc = network->COMGETTER(Profile)(gateway.mCloudProfile.asOutParam()); 197 AssertComRCBreakRC(hrc); 195 198 CloudClient client(virtualBox, gateway.mCloudProvider, gateway.mCloudProfile); 196 client.startCloudGateway(network, gateway); 199 client.startCloudGateway(network, gateway); /* Throws CloudError on failure. */ 197 200 } 198 201 catch (CloudError e)
Note:
See TracChangeset
for help on using the changeset viewer.