VirtualBox

Changeset 94578 in vbox for trunk/src/VBox/Main/src-server


Ignore:
Timestamp:
Apr 12, 2022 8:28:43 PM (3 years ago)
Author:
vboxsync
Message:

Main/SystemProperties: parameter naming consistency fix, still unhappy about the overall naming... bugref:7983

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-server/SystemPropertiesImpl.cpp

    r93513 r94578  
    22572257}
    22582258
    2259 HRESULT SystemProperties::getVBoxUpdateCount(ULONG *VBoxUpdateCount)
     2259HRESULT SystemProperties::getVBoxUpdateCount(ULONG *aVBoxUpdateCount)
    22602260{
    22612261    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
    22622262
    2263     *VBoxUpdateCount = m->uVBoxUpdateCount;
    2264 
    2265     return S_OK;
    2266 }
    2267 
    2268 HRESULT SystemProperties::setVBoxUpdateCount(ULONG VBoxUpdateCount)
     2263    *aVBoxUpdateCount = m->uVBoxUpdateCount;
     2264
     2265    return S_OK;
     2266}
     2267
     2268HRESULT SystemProperties::setVBoxUpdateCount(ULONG aVBoxUpdateCount)
    22692269{
    22702270    AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
    2271     m->uVBoxUpdateCount = VBoxUpdateCount;
     2271    m->uVBoxUpdateCount = aVBoxUpdateCount;
    22722272    alock.release();
    22732273
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