Changeset 1278 for trunk/MagicSoft/Mars
- Timestamp:
- 04/17/02 11:22:14 (23 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r1277 r1278 1 1 -*-*- END -*-*- 2 3 2002/04/17: Thomas Bretz 4 5 * mbase/MParContainer.cc: 6 - case label TMethodCall::kOther changed to default to get rid of 7 some warnings in newer root's (missing case label kString) 8 9 * mbase/MAGIC.h: 10 - changed defintion of Glog so that it now works on Alpha machines, too. 11 12 2 13 3 14 2002/04/16: Thomas Bretz -
trunk/MagicSoft/Mars/mbase/MAGIC.h
r1118 r1278 36 36 // 37 37 38 //This will be fixed soon. It doesn't work with Alphas at the moment 38 #ifdef __LINUX__ 39 39 class MLog; 40 # if !defined (__CINT__) || defined (__LINUX__)41 extern MLog gLog; 40 #else 41 #include "MLog.h" 42 42 #endif 43 43 44 extern MLog gLog; 45 44 46 #endif -
trunk/MagicSoft/Mars/mbase/MParContainer.cc
r1235 r1278 248 248 return kTRUE; 249 249 250 case TMethodCall::kOther: 250 default: 251 //case TMethodCall::kString: 252 //case TMethodCall::kOther: 251 253 /* someone may want to enhance this? */ 252 254 return kFALSE;
Note:
See TracChangeset
for help on using the changeset viewer.