- Timestamp:
- Feb 10, 2009 11:47:47 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ApplianceImpl.cpp
r16622 r16623 1464 1464 if (vsysThis.mapVirtualDisks.size() > 0) 1465 1465 { 1466 // @todo:1467 // - strHref could be empty (construct a new default file name)1468 // - check that the filename is unique to vbox in any case1469 1466 VirtualDisksMap::const_iterator itVD; 1470 1467 /* Iterate through all hard disks ()*/ … … 1683 1680 1684 1681 /* CPU count (ignored for now) */ 1685 /* @todo: check min/max requirements of VBox (SchemaDefs::Min/MaxCPUCount) */1686 1682 // EntriesList vsdeCPU = vsd->findByType (VirtualSystemDescriptionType_CPU); 1687 1683 1688 1684 /* RAM */ 1689 /* @todo: check min/max requirements of VBox (SchemaDefs::Min/MaxGuestRAM) */1690 1685 std::list<VirtualSystemDescriptionEntry*> vsdeRAM = vsdescThis->findByType(VirtualSystemDescriptionType_Memory); 1691 1686 ComAssertMsgThrow(vsdeRAM.size() == 1, ("RAM size missing"), E_FAIL); 1692 1687 const Utf8Str &memoryVBox = vsdeRAM.front()->strConfig; 1693 1688 ULONG tt = (ULONG)RTStrToUInt64(memoryVBox.c_str()); 1694 1695 1689 rc = pNewMachine->COMSETTER(MemorySize)(tt); 1696 1690 CheckComRCThrowRC(rc); … … 1791 1785 if (vsdeHDCIDE.size() > 0) 1792 1786 { 1793 / / set the appropriate IDE controller in the virtual BIOS of the VM1787 /* Set the appropriate IDE controller in the virtual BIOS of the VM */ 1794 1788 ComPtr<IBIOSSettings> biosSettings; 1795 1789 rc = pNewMachine->COMGETTER(BIOSSettings)(biosSettings.asOutParam());
Note:
See TracChangeset
for help on using the changeset viewer.