Changeset 6278 for trunk/MagicSoft/Mars/mbase
- Timestamp:
- 02/07/05 11:49:25 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/mbase
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MTaskEnv.cc
r5994 r6278 183 183 } 184 184 185 ResetBit(kIsDummy); 185 186 SetBit(kIsOwner); 186 187 -
trunk/MagicSoft/Mars/mbase/MTaskEnv.h
r5938 r6278 32 32 void SetOwner(Bool_t b=kTRUE) { b ? SetBit(kIsOwner) : ResetBit(kIsOwner); } 33 33 34 void SetDefault(MTask *task=0) { fTask = task; if (fTask) fTask->SetName(fName);else SetBit(kIsDummy); }34 void SetDefault(MTask *task=0) { fTask = task; if (fTask) { fTask->SetName(fName); ResetBit(kIsDummy); } else SetBit(kIsDummy); } 35 35 void SetDefault(const char *def); 36 36
Note:
See TracChangeset
for help on using the changeset viewer.