Changeset 30770 in vbox
- Timestamp:
- Jul 9, 2010 4:17:48 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 63563
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/EventImpl.cpp
r30765 r30770 360 360 class EventMapRecord 361 361 { 362 p rivate:362 public: 363 363 /** 364 364 * We have to be double linked, as structural modifications in list are delayed … … 366 366 */ 367 367 EventMapRecord* mNext; 368 bool mAlive; 369 private: 368 370 EventMapRecord* mPrev; 369 371 ListenerRecord* mRef; /* must be weak reference */ 370 372 int32_t mRefCnt; 371 bool mAlive;373 372 374 public: 373 375 EventMapRecord(ListenerRecord* aRef) 374 376 : 375 377 mNext(0), 378 mAlive(true), 376 379 mPrev(0), 377 380 mRef(aRef), 378 mRefCnt(1), 379 mAlive(true) 381 mRefCnt(1) 380 382 {} 381 383
Note:
See TracChangeset
for help on using the changeset viewer.