VirtualBox

Changeset 30770 in vbox


Ignore:
Timestamp:
Jul 9, 2010 4:17:48 PM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
63563
Message:

Main: fixed burn (inner of friend isn't my friend for some C++ compilers)

File:
1 edited

Legend:

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

    r30765 r30770  
    360360class EventMapRecord
    361361{
    362 private:
     362public:
    363363    /**
    364364     * We have to be double linked, as structural modifications in list are delayed
     
    366366     */
    367367    EventMapRecord* mNext;
     368    bool            mAlive;
     369private:
    368370    EventMapRecord* mPrev;
    369371    ListenerRecord* mRef; /* must be weak reference */
    370372    int32_t         mRefCnt;
    371     bool            mAlive;
     373   
    372374public:
    373375    EventMapRecord(ListenerRecord* aRef)
    374376        :
    375377        mNext(0),
     378        mAlive(true),
    376379        mPrev(0),
    377380        mRef(aRef),
    378         mRefCnt(1),
    379         mAlive(true)
     381        mRefCnt(1)
    380382    {}
    381383
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