Changeset 6278 for trunk/MagicSoft
- Timestamp:
- 02/07/05 11:49:25 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r6277 r6278 38 38 * mastro/MAstro.[h,cc]: 39 39 - added new function Angle2Coordinate 40 41 * mbase/MTaskEnv.[h,cc]: 42 - fixed a bug which caused the resource task to be ignored 43 if the default task was '<dummy>' 40 44 41 45 -
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.