- Timestamp:
- Dec 15, 2022 8:01:32 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestDnDPrivate.cpp
r97802 r97817 463 463 return false; 464 464 465 BOOL f Running;466 HRESULT hr = m_pProgress->COMGETTER(Completed)(&fRunning);465 BOOL fCompleted; 466 HRESULT const hr = m_pProgress->COMGETTER(Completed)(&fCompleted); 467 467 AssertComRCReturn(hr, false); 468 return RT_BOOL(fRunning);468 return !RT_BOOL(fCompleted); 469 469 } 470 470
Note:
See TracChangeset
for help on using the changeset viewer.