Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 1277)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 1278)
@@ -1,3 +1,14 @@
                                                                   -*-*- END -*-*-
+
+ 2002/04/17: Thomas Bretz
+
+   * mbase/MParContainer.cc:
+     - case label TMethodCall::kOther changed to default to get rid of
+       some warnings in newer root's (missing case label kString)
+
+   * mbase/MAGIC.h:
+     - changed defintion of Glog so that it now works on Alpha machines, too.
+
+
 
  2002/04/16: Thomas Bretz
Index: /trunk/MagicSoft/Mars/mbase/MAGIC.h
===================================================================
--- /trunk/MagicSoft/Mars/mbase/MAGIC.h	(revision 1277)
+++ /trunk/MagicSoft/Mars/mbase/MAGIC.h	(revision 1278)
@@ -36,9 +36,11 @@
 //
 
-//This will be fixed soon. It doesn't work with Alphas at the moment
+#ifdef __LINUX__
 class MLog;
-#if !defined (__CINT__) || defined (__LINUX__)
-extern MLog gLog;
+#else
+#include "MLog.h"
 #endif
 
+extern MLog gLog;
+
 #endif
Index: /trunk/MagicSoft/Mars/mbase/MParContainer.cc
===================================================================
--- /trunk/MagicSoft/Mars/mbase/MParContainer.cc	(revision 1277)
+++ /trunk/MagicSoft/Mars/mbase/MParContainer.cc	(revision 1278)
@@ -248,5 +248,7 @@
         return kTRUE;
 
-    case TMethodCall::kOther:
+    default:
+    //case TMethodCall::kString:
+    //case TMethodCall::kOther:
         /* someone may want to enhance this? */
         return kFALSE;
