VirtualBox

Changeset 28296 in vbox for trunk/src/VBox/Main/HostImpl.cpp


Ignore:
Timestamp:
Apr 14, 2010 12:11:07 PM (15 years ago)
Author:
vboxsync
Message:

Main: cosmetical fixes, mostly spaces

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/HostImpl.cpp

    r28036 r28296  
    442442    hr = pncc->GetDisplayName( &lpszName );
    443443    Assert(hr == S_OK);
    444     if(hr == S_OK)
     444    if (hr == S_OK)
    445445    {
    446446        Bstr name((CBSTR)lpszName);
     
    631631                       &lpszApp );
    632632    Assert(hr == S_OK);
    633     if(hr == S_OK)
     633    if (hr == S_OK)
    634634    {
    635635#    ifdef VBOX_NETFLT_ONDEMAND_BIND
     
    640640        hr = pNc->FindComponent(L"sun_VBoxNetFlt", &pTcpIpNcc);
    641641#     ifndef VBOX_WITH_HARDENING
    642         if(hr != S_OK)
     642        if (hr != S_OK)
    643643        {
    644644            /* TODO: try to install the netflt from here */
     
    648648#    endif
    649649
    650         if(hr == S_OK)
     650        if (hr == S_OK)
    651651        {
    652652            hr = VBoxNetCfgWinGetBindingPathEnum(pTcpIpNcc, EBP_BELOW, &pEnumBp);
     
    659659                {
    660660                    /* S_OK == enabled, S_FALSE == disabled */
    661                     if(pBp->IsEnabled() == S_OK)
     661                    if (pBp->IsEnabled() == S_OK)
    662662                    {
    663663                        hr = VBoxNetCfgWinGetBindingInterfaceEnum(pBp, &pEnumBi);
     
    671671                                hr = pBi->GetLowerComponent( &pMpNcc );
    672672                                Assert(hr == S_OK);
    673                                 if(hr == S_OK)
     673                                if (hr == S_OK)
    674674                                {
    675675                                    ULONG uComponentStatus;
    676676                                    hr = pMpNcc->GetDeviceStatus(&uComponentStatus);
    677677                                    Assert(hr == S_OK);
    678                                     if(hr == S_OK)
     678                                    if (hr == S_OK)
    679679                                    {
    680                                         if(uComponentStatus == 0)
     680                                        if (uComponentStatus == 0)
    681681                                        {
    682682                                            vboxNetWinAddComponent(&list, pMpNcc);
     
    14111411    std::list <ComObjPtr<HostNetworkInterface> > allList;
    14121412    int rc = NetIfList(allList);
    1413     if(RT_FAILURE(rc))
     1413    if (RT_FAILURE(rc))
    14141414        return E_FAIL;
    14151415
     
    14211421        HostNetworkInterfaceType_T t;
    14221422        HRESULT hr = (*it)->COMGETTER(InterfaceType)(&t);
    1423         if(FAILED(hr))
     1423        if (FAILED(hr))
    14241424            return hr;
    14251425
    1426         if(t == type)
     1426        if (t == type)
    14271427        {
    14281428            (*it)->setVirtualBox(m->pParent);
Note: See TracChangeset for help on using the changeset viewer.

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