Changeset 5807 for trunk/MagicSoft/Mars/mbase
- Timestamp:
- 01/12/05 13:33:46 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/mbase
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MEvtLoop.cc
r5382 r5807 244 244 fDisplay->StartUpdate(); 245 245 // Cascade display through childs 246 fParList->SetDisplay(fDisplay); 246 if (!TestBit(kPrivateDisplay)) 247 fParList->SetDisplay(fDisplay); 247 248 } 248 249 #endif -
trunk/MagicSoft/Mars/mbase/MEvtLoop.h
r4601 r5807 32 32 ULong_t fNumEvents; //! 33 33 34 enum { kIsOwner = BIT(14) };34 enum { kIsOwner = BIT(14), kPrivateDisplay = BIT(15) }; 35 35 36 36 Bool_t HasDuplicateNames(const TString txt) const; … … 54 54 MStatusDisplay *GetDisplay() { return fDisplay; } 55 55 void SetDisplay(MStatusDisplay *d); 56 void SetPrivateDisplay(Bool_t b=kTRUE) { b ? SetBit(kPrivateDisplay) : ResetBit(kPrivateDisplay); } 56 57 57 58 void SetOwner(Bool_t enable=kTRUE);
Note:
See TracChangeset
for help on using the changeset viewer.