VirtualBox

Changeset 55594 in vbox for trunk/src/VBox/Main/include


Ignore:
Timestamp:
May 2, 2015 3:54:10 AM (10 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
99967
Message:

copy by assignment fix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/include/GuestCtrlImplPrivate.h

    r55592 r55594  
    363363    GuestEnvironmentBase(const GuestEnvironmentBase &rThat, bool fChangeRecord)
    364364        : m_hEnv(NIL_RTENV)
     365        , m_cRefs(1)
    365366    {
    366367        int rc = cloneCommon(rThat, fChangeRecord);
     
    416417};
    417418
     419class GuestEnvironmentChanges;
     420
    418421
    419422/**
     
    471474        return cloneCommon(rThat, false /*fChangeRecord*/);
    472475    }
     476
     477    /**
     478     * @copydoc copy()
     479     */
     480    GuestEnvironment &operator=(const GuestEnvironmentBase &rThat)
     481    {
     482        int rc = cloneCommon(rThat, true /*fChangeRecord*/);
     483        if (RT_FAILURE(rc))
     484            throw (Global::vboxStatusCodeToCOM(rc));
     485        return *this;
     486    }
     487
     488    /** @copydoc copy() */
     489    GuestEnvironment &operator=(const GuestEnvironment &rThat)
     490    {   return operator=((const GuestEnvironmentBase &)rThat); }
     491
     492    /** @copydoc copy() */
     493    GuestEnvironment &operator=(const GuestEnvironmentChanges &rThat)
     494    {   return operator=((const GuestEnvironmentBase &)rThat); }
     495
    473496};
    474497
     
    531554        return cloneCommon(rThat, true /*fChangeRecord*/);
    532555    }
     556
     557    /**
     558     * @copydoc copy()
     559     */
     560    GuestEnvironmentChanges &operator=(const GuestEnvironmentBase &rThat)
     561    {
     562        int rc = cloneCommon(rThat, true /*fChangeRecord*/);
     563        if (RT_FAILURE(rc))
     564            throw (Global::vboxStatusCodeToCOM(rc));
     565        return *this;
     566    }
     567
     568    /** @copydoc copy() */
     569    GuestEnvironmentChanges &operator=(const GuestEnvironmentChanges &rThat)
     570    {   return operator=((const GuestEnvironmentBase &)rThat); }
     571
     572    /** @copydoc copy() */
     573    GuestEnvironmentChanges &operator=(const GuestEnvironment &rThat)
     574    {   return operator=((const GuestEnvironmentBase &)rThat); }
    533575};
    534576
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