Changeset 49038 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Oct 10, 2013 6:21:26 PM (11 years ago)
- Location:
- trunk/src/VBox/Frontends
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageAppliance.cpp
r46658 r49038 1051 1051 break; 1052 1052 1053 com::SafeArray<ExportOptions_T> options; 1054 if (fManifest) 1055 options.push_back(ExportOptions_CreateManifest); 1056 1053 1057 ComPtr<IProgress> progress; 1054 1058 CHECK_ERROR_BREAK(pAppliance, Write(Bstr(strOvfFormat).raw(), 1055 fManifest,1059 ComSafeArrayAsInParam(options), 1056 1060 Bstr(pszAbsFilePath).raw(), 1057 1061 progress.asOutParam())); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportApp.cpp
r45424 r49038 7 7 8 8 /* 9 * Copyright (C) 2009-201 2Oracle Corporation9 * Copyright (C) 2009-2013 Oracle Corporation 10 10 * 11 11 * This file is part of VirtualBox Open Source Edition (OSE), as … … 139 139 { 140 140 /* Write the appliance: */ 141 CProgress progress = appliance.Write(field("format").toString(), field("manifestSelected").toBool() /* fManifest */, uri()); 141 QVector<KExportOptions> options; 142 if (field("manifestSelected").toBool()) 143 options.append(KExportOptions_CreateManifest); 144 CProgress progress = appliance.Write(field("format").toString(), options, uri()); 142 145 bool fResult = appliance.isOk(); 143 146 if (fResult)
Note:
See TracChangeset
for help on using the changeset viewer.