Changeset 107832 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Jan 17, 2025 9:21:52 AM (4 months ago)
- svn:sync-xref-src-repo-rev:
- 167018
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp
r107161 r107832 357 357 { 358 358 com::Bstr bstrDescription; 359 hrc = progress->COMGETTER(Description (bstrDescription.asOutParam()));359 hrc = progress->COMGETTER(Description)(bstrDescription.asOutParam()); 360 360 if (FAILED(hrc)) 361 361 { … … 395 395 } 396 396 397 hrc = progress->COMGETTER(Completed (&fCompleted));397 hrc = progress->COMGETTER(Completed)(&fCompleted); 398 398 while (SUCCEEDED(hrc)) 399 399 { 400 progress->COMGETTER(Percent (&ulCurrentPercent));400 progress->COMGETTER(Percent)(&ulCurrentPercent); 401 401 402 402 if ( fDetailed … … 408 408 break; 409 409 ULONG ulCurrentOperationPercent = 0; 410 hrc = progress->COMGETTER(OperationPercent (&ulCurrentOperationPercent));410 hrc = progress->COMGETTER(OperationPercent)(&ulCurrentOperationPercent); 411 411 if (FAILED(hrc)) 412 412 break; … … 414 414 if (ulLastOperation != ulOperation) 415 415 { 416 hrc = progress->COMGETTER(OperationDescription (bstrOperationDescription.asOutParam()));416 hrc = progress->COMGETTER(OperationDescription)(bstrOperationDescription.asOutParam()); 417 417 if (FAILED(hrc)) 418 418 break; … … 472 472 473 473 NativeEventQueue::getMainEventQueue()->processEventQueue(0); 474 hrc = progress->COMGETTER(Completed (&fCompleted));474 hrc = progress->COMGETTER(Completed)(&fCompleted); 475 475 } 476 476
Note:
See TracChangeset
for help on using the changeset viewer.