VirtualBox

Ignore:
Timestamp:
Feb 2, 2010 9:11:09 PM (15 years ago)
Author:
vboxsync
Message:

PDM: s/pCfgHandle/pCfg/g - part 2.

File:
1 edited

Legend:

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

    r26166 r26173  
    34073407 * @copydoc FNPDMDRVCONSTRUCT
    34083408 */
    3409 DECLCALLBACK(int) Display::drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle, uint32_t fFlags)
     3409DECLCALLBACK(int) Display::drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags)
    34103410{
    34113411    PDRVMAINDISPLAY pData = PDMINS_2_DATA(pDrvIns, PDRVMAINDISPLAY);
     
    34163416     * Validate configuration.
    34173417     */
    3418     if (!CFGMR3AreValuesValid(pCfgHandle, "Object\0"))
     3418    if (!CFGMR3AreValuesValid(pCfg, "Object\0"))
    34193419        return VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES;
    34203420    AssertMsgReturn(PDMDrvHlpNoAttach(pDrvIns) == VERR_PDM_NO_ATTACHED_DRIVER,
     
    34693469     */
    34703470    void *pv;
    3471     int rc = CFGMR3QueryPtr(pCfgHandle, "Object", &pv);
     3471    int rc = CFGMR3QueryPtr(pCfg, "Object", &pv);
    34723472    if (RT_FAILURE(rc))
    34733473    {
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