Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 2320)
+++ trunk/MagicSoft/Mars/Changelog	(revision 2321)
@@ -1,3 +1,10 @@
                                                  -*-*- END OF LINE -*-*-
+
+ 2003/08/27: Thomas Bretz
+
+   * mhist/MH3.cc:
+     - fixed missing UseCurrentStyle for newer root versions
+
+
 
  2003/08/26: Thomas Bretz
Index: trunk/MagicSoft/Mars/mhist/MH3.cc
===================================================================
--- trunk/MagicSoft/Mars/mhist/MH3.cc	(revision 2320)
+++ trunk/MagicSoft/Mars/mhist/MH3.cc	(revision 2321)
@@ -116,5 +116,8 @@
 
     if (fHist)
+    {
         fHist->SetDirectory(NULL);
+        fHist->UseCurrentStyle();
+    }
 
     fScale[0] = 1;
@@ -140,4 +143,5 @@
     fTitle = Form(gsDefTitle.Data(), 1);
 
+    fHist->UseCurrentStyle();
     fHist->SetDirectory(NULL);
     fHist->SetYTitle("Counts");
@@ -166,4 +170,5 @@
     fTitle = Form(gsDefTitle.Data(), 2);
 
+    fHist->UseCurrentStyle();
     fHist->SetDirectory(NULL);
     fHist->SetZTitle("Counts");
@@ -192,4 +197,5 @@
     fTitle = Form(gsDefTitle.Data(), 3);
 
+    fHist->UseCurrentStyle();
     fHist->SetDirectory(NULL);
 
