Changeset 21806 in vbox for trunk/src/VBox/Main/HardDiskImpl.cpp
- Timestamp:
- Jul 27, 2009 10:14:11 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/HardDiskImpl.cpp
r21394 r21806 665 665 mm.vdIfCallsError.enmInterface = VDINTERFACETYPE_ERROR; 666 666 mm.vdIfCallsError.pfnError = vdErrorCall; 667 mm.vdIfCallsError.pfnMessage = NULL; 667 668 668 669 /* Initialize the callbacks of the VD progress interface */ … … 3250 3251 3251 3252 /** @todo This kind of opening of images is assuming that diff 3252 * images can be opened as base images. Not very clean, and should 3253 * be fixed eventually. */ 3253 * images can be opened as base images. Should be fixed ASAP. */ 3254 3254 vrc = VDOpen(hdd, 3255 3255 Utf8Str(mm.format), … … 3275 3275 if (mm.setParentId) 3276 3276 { 3277 vrc = VDSet Uuid(hdd, 0, mm.parentId);3277 vrc = VDSetParentUuid(hdd, 0, mm.parentId); 3278 3278 ComAssertRCThrow(vrc, E_FAIL); 3279 3279 } … … 3900 3900 that->mm.vdProgress = task->progress; 3901 3901 3902 /** @todo add VD_IMAGE_FLAGS_DIFF to the image flags, to 3903 * be on the safe side. */ 3902 3904 vrc = VDCreateDiff (hdd, targetFormat, targetLocation, 3903 3905 task->d.variant,
Note:
See TracChangeset
for help on using the changeset viewer.