Changeset 45068 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Mar 18, 2013 5:27:22 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 84350
- Location:
- trunk/src/VBox/Frontends
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageAppliance.cpp
r44868 r45068 5 5 6 6 /* 7 * Copyright (C) 2009-201 2Oracle Corporation7 * Copyright (C) 2009-2013 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 977 977 ComPtr<IMachine> pMachine = *itM; 978 978 ComPtr<IVirtualSystemDescription> pVSD; 979 CHECK_ERROR_BREAK(pMachine, Export (pAppliance, Bstr(pszAbsFilePath).raw(), pVSD.asOutParam()));979 CHECK_ERROR_BREAK(pMachine, ExportTo(pAppliance, Bstr(pszAbsFilePath).raw(), pVSD.asOutParam())); 980 980 // Add additional info to the virtual system description if the user wants so 981 981 ArgsMap *pmapArgs = NULL; -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageMisc.cpp
r44948 r45068 162 162 { 163 163 ComPtr<IProgress> pProgress; 164 CHECK_ERROR_RET(machine, Delete (ComSafeArrayAsInParam(aMedia), pProgress.asOutParam()),164 CHECK_ERROR_RET(machine, DeleteConfig(ComSafeArrayAsInParam(aMedia), pProgress.asOutParam()), 165 165 RTEXITCODE_FAILURE); 166 166 -
trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/chooser/UIGChooserModel.cpp
r45049 r45068 7 7 8 8 /* 9 * Copyright (C) 2012 Oracle Corporation9 * Copyright (C) 2012-2013 Oracle Corporation 10 10 * 11 11 * This file is part of VirtualBox Open Source Edition (OSE), as … … 1467 1467 { 1468 1468 /* Delete machine hard-disks: */ 1469 CProgress progress = machine.Delete (mediums);1469 CProgress progress = machine.DeleteConfig(mediums); 1470 1470 if (machine.isOk()) 1471 1471 { -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic4.cpp
r41610 r45068 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 … … 55 55 { 56 56 /* Add the export description to our appliance object: */ 57 CVirtualSystemDescription vsd = machine.Export (*pAppliance, qobject_cast<UIWizardExportApp*>(wizardImp())->uri());57 CVirtualSystemDescription vsd = machine.ExportTo(*pAppliance, qobject_cast<UIWizardExportApp*>(wizardImp())->uri()); 58 58 fResult = machine.isOk(); 59 59 if (!fResult) -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVM.cpp
r43477 r45068 7 7 8 8 /* 9 * Copyright (C) 2006-201 2Oracle Corporation9 * Copyright (C) 2006-2013 Oracle Corporation 10 10 * 11 11 * This file is part of VirtualBox Open Source Edition (OSE), as … … 246 246 if (vbox.isOk()) 247 247 { 248 CProgress progress = m_machine.Delete (aMedia);248 CProgress progress = m_machine.DeleteConfig(aMedia); 249 249 progress.WaitForCompletion(-1); // @todo do this nicely with a progress dialog, this can delete lots of files 250 250 }
Note:
See TracChangeset
for help on using the changeset viewer.