VirtualBox

Ignore:
Timestamp:
Jan 17, 2025 9:21:52 AM (4 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
167018
Message:

FE/VBoxManage: Typos

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp

    r107161 r107832  
    357357    {
    358358        com::Bstr bstrDescription;
    359         hrc = progress->COMGETTER(Description(bstrDescription.asOutParam()));
     359        hrc = progress->COMGETTER(Description)(bstrDescription.asOutParam());
    360360        if (FAILED(hrc))
    361361        {
     
    395395    }
    396396
    397     hrc = progress->COMGETTER(Completed(&fCompleted));
     397    hrc = progress->COMGETTER(Completed)(&fCompleted);
    398398    while (SUCCEEDED(hrc))
    399399    {
    400         progress->COMGETTER(Percent(&ulCurrentPercent));
     400        progress->COMGETTER(Percent)(&ulCurrentPercent);
    401401
    402402        if (   fDetailed
     
    408408                break;
    409409            ULONG ulCurrentOperationPercent = 0;
    410             hrc = progress->COMGETTER(OperationPercent(&ulCurrentOperationPercent));
     410            hrc = progress->COMGETTER(OperationPercent)(&ulCurrentOperationPercent);
    411411            if (FAILED(hrc))
    412412                break;
     
    414414            if (ulLastOperation != ulOperation)
    415415            {
    416                 hrc = progress->COMGETTER(OperationDescription(bstrOperationDescription.asOutParam()));
     416                hrc = progress->COMGETTER(OperationDescription)(bstrOperationDescription.asOutParam());
    417417                if (FAILED(hrc))
    418418                    break;
     
    472472
    473473        NativeEventQueue::getMainEventQueue()->processEventQueue(0);
    474         hrc = progress->COMGETTER(Completed(&fCompleted));
     474        hrc = progress->COMGETTER(Completed)(&fCompleted);
    475475    }
    476476
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette