Changeset 78844 in vbox
- Timestamp:
- May 29, 2019 12:18:01 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 130948
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/ApplianceImplImport.cpp
r78843 r78844 1122 1122 { 1123 1123 if (aLocInfo.storageType == VFSType_Cloud) 1124 { 1124 1125 /* 1 operation only */ 1125 1126 hrc = aProgress->init(mVirtualBox, static_cast<IAppliance*>(this), 1126 1127 Utf8Str(tr("Getting cloud instance information...")), TRUE /* aCancelable */); 1128 1129 /* Create an empty ovf::OVFReader for manual filling it. 1130 * It's not a normal usage case, but we try to re-use some OVF stuff to friend 1131 * the cloud import with OVF import. 1132 * In the standard case the ovf::OVFReader is created earlier.*/ 1133 m->pReader = new ovf::OVFReader(); 1134 } 1127 1135 else 1128 1136 { … … 1594 1602 throw setErrorVrc(vrc, strLastActualErrorDesc.c_str()); 1595 1603 } 1596 1597 /* Create an empty ovf::OVFReader for manual filling it.1598 * It's not a normal usage case, but we try to re-use some OVF stuff to friend1599 * the cloud import with OVF import.1600 * In the standard case the ovf::OVFReader is created earlier.*/1601 m->pReader = new ovf::OVFReader();1602 1604 1603 1605 /* Create a new virtual system and work directly on the list copy. */
Note:
See TracChangeset
for help on using the changeset viewer.