- Timestamp:
- Oct 12, 2007 7:38:37 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/HardDiskImpl.cpp
r5236 r5278 81 81 Progress *progress = static_cast <Progress *> (pvUser); 82 82 83 /* update the progress object */ 83 /* update the progress object, capping it at 99% as the final percent 84 * is used for additional operations like setting the UUIDs and similar. */ 84 85 if (progress) 85 progress->notifyProgress ( uPercent);86 progress->notifyProgress (RT_MIN(uPercent, 99)); 86 87 87 88 return VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.