Changeset 24556 in vbox for trunk/src/VBox/Main
- Timestamp:
- Nov 10, 2009 3:24:24 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/SnapshotImpl.cpp
r24554 r24556 54 54 static DECLCALLBACK(int) progressCallback(unsigned uPercentage, void *pvUser) 55 55 { 56 Progress *progress = static_cast<Progress*>(pvUser);56 IProgress *progress = static_cast<IProgress*>(pvUser); 57 57 58 58 /* update the progress object */ … … 1304 1304 0, 1305 1305 progressCallback, 1306 static_cast<Progress*>(aConsoleProgress));1306 aConsoleProgress); 1307 1307 alock.enter(); 1308 1308 … … 1724 1724 0, 1725 1725 progressCallback, 1726 aTask.pProgress);1726 static_cast<IProgress*>(aTask.pProgress)); 1727 1727 1728 1728 alock.enter();
Note:
See TracChangeset
for help on using the changeset viewer.