Changeset 6291 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jan 9, 2008 10:57:05 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/HardDiskImpl.cpp
r6173 r6291 3612 3612 CHECK_READY(); 3613 3613 3614 /// @todo (r=dmik) will need this if we add suppor dfor differencing VMDKs3614 /// @todo (r=dmik) will need this if we add support for differencing VMDKs 3615 3615 // 3616 3616 // /* only a non-differencing image knows the logical size */ … … 3771 3771 mFilePathFull.raw()); 3772 3772 3773 /// @todo (r=dmik) will need this if we add suppor dfor differencing VMDKs3773 /// @todo (r=dmik) will need this if we add support for differencing VMDKs 3774 3774 // if (isDifferencing()) 3775 3775 // return setError (E_FAIL, … … 3940 3940 return E_NOTIMPL; 3941 3941 3942 /// @todo (r=dmik) will need this if we add suppor dfor differencing VMDKs3942 /// @todo (r=dmik) will need this if we add support for differencing VMDKs 3943 3943 // Use code from HVirtualDiskImage::cloneToImage as an example. 3944 3944 } … … 3960 3960 return E_NOTIMPL; 3961 3961 3962 /// @todo (r=dmik) will need this if we add suppor dfor differencing VMDKs3962 /// @todo (r=dmik) will need this if we add support for differencing VMDKs 3963 3963 // Use code from HVirtualDiskImage::createDiffImage as an example. 3964 3964 } … … 4123 4123 if (!mParent) 4124 4124 { 4125 uint64_t size = VDGetSize (mContainer );4125 uint64_t size = VDGetSize (mContainer, 0); 4126 4126 /* convert to MBytes */ 4127 4127 mSize = size / 1024 / 1024; … … 4959 4959 if (!mParent) 4960 4960 { 4961 uint64_t size = VDGetSize (mContainer );4961 uint64_t size = VDGetSize (mContainer, 0); 4962 4962 /* convert to MBytes */ 4963 4963 mSize = size / 1024 / 1024; … … 5823 5823 if (!mParent) 5824 5824 { 5825 uint64_t size = VDGetSize (mContainer );5825 uint64_t size = VDGetSize (mContainer, 0); 5826 5826 /* convert to MBytes */ 5827 5827 mSize = size / 1024 / 1024;
Note:
See TracChangeset
for help on using the changeset viewer.