VirtualBox

Ignore:
Timestamp:
Nov 26, 2009 11:31:46 AM (15 years ago)
Author:
vboxsync
Message:

Main: enable -Wshadow gcc option to warn about shadowed variables and fix all resulting warnings; in particular, rename some stack and member variables and rename getter methods like id() to getId()

File:
1 edited

Legend:

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

    r24955 r24989  
    10551055        // don't lock the folder because methods we access are const
    10561056
    1057         Utf8Str name = folder->name();
     1057        Utf8Str name = folder->getName();
    10581058        vrc = SSMR3PutU32(pSSM, (uint32_t)name.length() + 1 /* term. 0 */);
    10591059        AssertRC(vrc);
     
    10611061        AssertRC(vrc);
    10621062
    1063         Utf8Str hostPath = folder->hostPath();
     1063        Utf8Str hostPath = folder->getHostPath();
    10641064        vrc = SSMR3PutU32(pSSM, (uint32_t)hostPath.length() + 1 /* term. 0 */);
    10651065        AssertRC(vrc);
     
    10671067        AssertRC(vrc);
    10681068
    1069         vrc = SSMR3PutBool(pSSM, !!folder->writable());
     1069        vrc = SSMR3PutBool(pSSM, !!folder->isWritable());
    10701070        AssertRC(vrc);
    10711071    }
     
    26682668        pTask->mProgress.queryInterfaceTo(aProgress);
    26692669    }
    2670     catch (HRESULT rc)
     2670    catch (HRESULT erc)
    26712671    {
    26722672        delete pTask;
    2673         NOREF(rc);
     2673        NOREF(erc);
    26742674        mptrCancelableProgress.setNull();
    26752675    }
     
    47924792        for (SharedFolderMap::const_iterator it = mSharedFolders.begin();
    47934793             it != mSharedFolders.end(); ++ it)
    4794             sharedFolders[it->first] = SharedFolderData(it->second->hostPath(), it->second->writable());
     4794            sharedFolders[it->first] = SharedFolderData(it->second->getHostPath(), it->second->isWritable());
    47954795    }
    47964796
     
    51945194        {
    51955195            PPDMIBASE pBase;
    5196             int vrc = PDMR3QueryLun(mpVM, "usb-ohci", 0, 0, &pBase);
     5196            vrc = PDMR3QueryLun(mpVM, "usb-ohci", 0, 0, &pBase);
    51975197            if (RT_SUCCESS(vrc))
    51985198            {
     
    60616061        ComObjPtr<OUSBDevice> device;
    60626062        device.createObject();
    6063         HRESULT hrc = device->init(aHostDevice);
     6063        hrc = device->init(aHostDevice);
    60646064        AssertComRC(hrc);
    60656065
     
    66296629     * Mark all existing remote USB devices as dirty.
    66306630     */
    6631     RemoteUSBDeviceList::iterator it = mRemoteUSBDevices.begin();
    6632     while (it != mRemoteUSBDevices.end())
     6631    for (RemoteUSBDeviceList::iterator it = mRemoteUSBDevices.begin();
     6632         it != mRemoteUSBDevices.end();
     6633         ++it)
    66336634    {
    66346635        (*it)->dirty(true);
    6635         ++ it;
    66366636    }
    66376637
     
    66536653        bool fNewDevice = true;
    66546654
    6655         it = mRemoteUSBDevices.begin();
    6656         while (it != mRemoteUSBDevices.end())
     6655        for (RemoteUSBDeviceList::iterator it = mRemoteUSBDevices.begin();
     6656             it != mRemoteUSBDevices.end();
     6657             ++it)
    66576658        {
    66586659            if ((*it)->devId() == e->id
     
    66646665               break;
    66656666            }
    6666 
    6667             ++ it;
    66686667        }
    66696668
     
    73097308
    73107309        /* Pass all custom parameters. */
    7311         SafeArray<BSTR> names;
    7312         SafeArray<BSTR> values;
     7310        SafeArray<BSTR> aNames;
     7311        SafeArray<BSTR> aValues;
    73137312        hrc = medium->GetProperties(NULL,
    7314                                     ComSafeArrayAsOutParam(names),
    7315                                     ComSafeArrayAsOutParam(values));            H();
    7316 
    7317         if (names.size() != 0)
     7313                                    ComSafeArrayAsOutParam(aNames),
     7314                                    ComSafeArrayAsOutParam(aValues));            H();
     7315
     7316        if (aNames.size() != 0)
    73187317        {
    73197318            PCFGMNODE pVDC;
    73207319            rc = CFGMR3InsertNode(pCur, "VDConfig", &pVDC);             RC_CHECK();
    7321             for (size_t i = 0; i < names.size(); ++ i)
     7320            for (size_t i = 0; i < aNames.size(); ++ i)
    73227321            {
    7323                 if (values[i])
     7322                if (aValues[i])
    73247323                {
    7325                     Utf8Str name = names[i];
    7326                     Utf8Str value = values[i];
     7324                    Utf8Str name = aNames[i];
     7325                    Utf8Str value = aValues[i];
    73277326                    rc = CFGMR3InsertString(pVDC, name.c_str(), value.c_str());
    73287327                    if (    !(name.compare("HostIPStack"))
     
    75087507                 * to access Console.
    75097508                 */
    7510                 int vrc = VMR3ReqCallWait(that->mpVM,
    7511                                           VMCPUID_ANY,
    7512                                           (PFNRT)reconfigureMedium,
    7513                                           6,
    7514                                           that->mpVM,
    7515                                           lInstance,
    7516                                           enmController,
    7517                                           enmBus,
    7518                                           atts[i],
    7519                                           &rc);
     7509                vrc = VMR3ReqCallWait(that->mpVM,
     7510                                      VMCPUID_ANY,
     7511                                      (PFNRT)reconfigureMedium,
     7512                                      6,
     7513                                      that->mpVM,
     7514                                      lInstance,
     7515                                      enmController,
     7516                                      enmBus,
     7517                                      atts[i],
     7518                                      &rc);
    75207519                if (RT_FAILURE(vrc))
    75217520                    throw setError(E_FAIL, Console::tr("%Rrc"), vrc);
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