Changeset 17159 in vbox
- Timestamp:
- Feb 26, 2009 12:20:19 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ApplianceImpl.cpp
r17157 r17159 1628 1628 /* Figure out how many sub operation the import will need */ 1629 1629 /* One for the appliance */ 1630 size_t opCount = 1;1630 uint32_t opCount = 1; 1631 1631 list< ComObjPtr<VirtualSystemDescription> >::const_iterator it; 1632 1632 for (it = m->virtualSystemDescriptions.begin(); … … 1639 1639 /* One for every hard disk of the Virtual System */ 1640 1640 std::list<VirtualSystemDescriptionEntry*> avsdeHDs = vsdescThis->findByType(VirtualSystemDescriptionType_HardDiskImage); 1641 opCount += avsdeHDs.size();1641 opCount += (uint32_t)avsdeHDs.size(); 1642 1642 } 1643 1643 Bstr progressDesc = BstrFmt(tr("Import appliance '%ls'"), … … 2557 2557 { 2558 2558 VirtualSystemDescriptionEntry vsde; 2559 vsde.ulIndex = m->descriptions.size(); // each entry gets an index so the client side can reference them2559 vsde.ulIndex = (uint32_t)m->descriptions.size(); // each entry gets an index so the client side can reference them 2560 2560 vsde.type = aType; 2561 2561 vsde.strRef = strRef;
Note:
See TracChangeset
for help on using the changeset viewer.