Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 2002)
+++ trunk/MagicSoft/Mars/Changelog	(revision 2003)
@@ -27,4 +27,7 @@
    * mhist/MHCerPhotEvt.cc:
      - removed ratio from Fill
+
+   * mhist/MH.h:
+     - fixed a bug in the overloading of DrawClone
 
 
Index: trunk/MagicSoft/Mars/mhist/MH.h
===================================================================
--- trunk/MagicSoft/Mars/mhist/MH.h	(revision 2002)
+++ trunk/MagicSoft/Mars/mhist/MH.h	(revision 2003)
@@ -60,5 +60,9 @@
 
     void Draw(Option_t *o="") { MParContainer::Draw(o); }
-    TObject *DrawClone(Option_t *opt, Int_t w=580, Int_t h=435) const;
+    TObject *DrawClone(Option_t *opt, Int_t w, Int_t h) const;
+    TObject *DrawClone(Option_t *opt="") const
+    {
+        return MH::DrawClone(opt, 580, 435);
+    }
 
     static TVirtualPad *GetNewPad(Option_t *opt);
