Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 997)
+++ trunk/MagicSoft/Mars/Changelog	(revision 998)
@@ -35,4 +35,18 @@
      - added correction for use of several trigger conditions
      - speedup threshold calc by usage of UseLeaf
+
+   * magiclogo.xpm, marslogo.xpm:
+     - changed
+
+   * mmain/MMonteCarlo.cc:
+     - added a workaround for the <TClass::TClass> no dictionary for MMc*
+       problem
+
+   * mbase/MWriteRootFile.[h,cc]:
+     - simplified code by removing MRootFileTree class
+
+   * mbase/MLog.cc:
+     - changed char[len+1] to 'new' statement
+
 
 
Index: trunk/MagicSoft/Mars/mbase/MLog.cc
===================================================================
--- trunk/MagicSoft/Mars/mbase/MLog.cc	(revision 997)
+++ trunk/MagicSoft/Mars/mbase/MLog.cc	(revision 998)
@@ -142,5 +142,5 @@
     if (fDevice&eGui && fgui)
     {
-        char dummy[len+1];
+        char *dummy = new char[len+1];
         memcpy(dummy, fBase, len);
         *(dummy+len)='\0';
@@ -148,4 +148,5 @@
         fgui->SetTopEntry(fGuiLineId++);
         fgui->SetBit(kHasChanged);
+        delete dummy;
     }
 
