Changeset 18400 in vbox
- Timestamp:
- Mar 27, 2009 2:24:11 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/src/VBox/Main/ApplianceImpl.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ApplianceImpl.cpp
r18395 r18400 1614 1614 hd.ulAddressOnParent); 1615 1615 ULONG ulSize = 0; 1616 if (di.iPopulatedSize != -1) 1616 if (di.iCapacity != -1) 1617 ulSize = (ULONG)(di.iCapacity / _1M); 1618 else if (di.iPopulatedSize != -1) 1617 1619 ulSize = (ULONG)(di.iPopulatedSize / _1M); 1618 1620 else if (di.iSize != -1) 1619 1621 ulSize = (ULONG)(di.iSize / _1M); 1620 else if (di.iCapacity != -1)1621 ulSize = (ULONG)(di.iCapacity / _1M);1622 1622 if (ulSize == 0) 1623 1623 ulSize = 10000; // assume 10 GB, this is for the progress bar only anyway
Note:
See TracChangeset
for help on using the changeset viewer.

