Changeset 18274 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Mar 25, 2009 6:35:46 PM (16 years ago)
- Location:
- trunk/src/VBox/Frontends
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxHeadless/VBoxHeadless.cpp
r18224 r18274 310 310 if (FAILED(rc) || fCompleted) 311 311 break; 312 LONG cPercentNow;312 ULONG cPercentNow; 313 313 rc = progress->COMGETTER(Percent)(&cPercentNow); 314 314 if (FAILED(rc)) -
trunk/src/VBox/Frontends/VBoxSDL/VBoxSDL.cpp
r18265 r18274 3921 3921 * the title bar in the mean while. 3922 3922 */ 3923 LONG cPercent = 0;3923 ULONG cPercent = 0; 3924 3924 #ifndef RT_OS_DARWIN /* don't break the other guys yet. */ 3925 3925 for (;;) … … 3929 3929 if (FAILED(rc) || fCompleted) 3930 3930 break; 3931 LONG cPercentNow;3931 ULONG cPercentNow; 3932 3932 rc = gProgress->COMGETTER(Percent)(&cPercentNow); 3933 3933 if (FAILED(rc)) … … 3961 3961 if (FAILED(rc) || fCompleted) 3962 3962 break; 3963 LONG cPercentNow;3963 ULONG cPercentNow; 3964 3964 rc = gProgress->COMGETTER(Percent)(&cPercentNow); 3965 3965 if (FAILED(rc)) … … 4122 4122 else if (machineState == MachineState_Restoring) 4123 4123 { 4124 LONG cPercentNow;4124 ULONG cPercentNow; 4125 4125 HRESULT rc = gProgress->COMGETTER(Percent)(&cPercentNow); 4126 4126 if (SUCCEEDED(rc)) … … 4658 4658 * the title bar in the mean while. 4659 4659 */ 4660 LONG cPercent = 0;4660 ULONG cPercent = 0; 4661 4661 for (;;) 4662 4662 { … … 4665 4665 if (FAILED(rc) || fCompleted) 4666 4666 break; 4667 LONG cPercentNow;4667 ULONG cPercentNow; 4668 4668 rc = gProgress->COMGETTER(Percent)(&cPercentNow); 4669 4669 if (FAILED(rc))
Note:
See TracChangeset
for help on using the changeset viewer.