Changeset 45068 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Mar 18, 2013 5:27:22 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 84350
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
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.