Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 1326)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 1327)
@@ -26,4 +26,10 @@
    * mhist/MH3.h:
      - removed 'const' to make 0.7 root 3.01/06 compatible
+
+   * mdata/MDataMember.cc, mdata/MDataValue.cc, mdata/MDataChain.cc:
+     - removed a 'redefinition of default argument'
+
+   * mdata/MFDataMember.cc:
+     - fixed a bug in the process function (second switch was never reached)
 
 
Index: /trunk/MagicSoft/Mars/mbase/Makefile
===================================================================
--- /trunk/MagicSoft/Mars/mbase/Makefile	(revision 1326)
+++ /trunk/MagicSoft/Mars/mbase/Makefile	(revision 1327)
@@ -31,5 +31,6 @@
 .SUFFIXES: .c .cc .cxx .h .hxx .o 
 
-SRCFILES = MParContainer.cc \
+SRCFILES = MLog.cc \
+	   MParContainer.cc \
 	   MParList.cc \
 	   MInputStreamID.cc \
@@ -53,5 +54,4 @@
            MClone.cc \
            MPrint.cc \
-           MLog.cc \
            MLogManip.cc
 
Index: /trunk/MagicSoft/Mars/mdata/MDataMember.cc
===================================================================
--- /trunk/MagicSoft/Mars/mdata/MDataMember.cc	(revision 1326)
+++ /trunk/MagicSoft/Mars/mdata/MDataMember.cc	(revision 1327)
@@ -132,5 +132,5 @@
 // Print the name of the data member without an CR.
 //
-void MDataMember::Print(Option_t *opt = "") const
+void MDataMember::Print(Option_t *opt) const
 {
     *fLog << fName << flush;
Index: /trunk/MagicSoft/Mars/mdata/MDataValue.cc
===================================================================
--- /trunk/MagicSoft/Mars/mdata/MDataValue.cc	(revision 1326)
+++ /trunk/MagicSoft/Mars/mdata/MDataValue.cc	(revision 1327)
@@ -42,5 +42,5 @@
 // Print the value
 //
-void MDataValue::Print(Option_t *opt = "") const
+void MDataValue::Print(Option_t *opt) const
 {
     *fLog << fValue << flush;
