Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 728)
+++ trunk/MagicSoft/Mars/Changelog	(revision 729)
@@ -1,4 +1,19 @@
                                                                   -*-*- END -*-*-
 
+ 2000/04/09: Thomas Bretz
+
+ * mgui/MGeomPix.cc:
+   - fixed a small error in SetNeighbors (thanks to Oscar)
+
+
+ 2000/04/04: Thomas Bretz
+
+ * mraw/MRawEvtData.[cc,h]:
+   - changed wrong return type of GetNumPixels to UShort_t
+
+ * mmain/MBrowser.[cc,h]:
+   - made the dialog somehow work like it should
+ 
+ 
  2000/04/03: Thomas Bretz
 
Index: trunk/MagicSoft/Mars/mgui/MGeomPix.cc
===================================================================
--- trunk/MagicSoft/Mars/mgui/MGeomPix.cc	(revision 728)
+++ trunk/MagicSoft/Mars/mgui/MGeomPix.cc	(revision 729)
@@ -20,5 +20,6 @@
     fNeighbors[5] = i5;
 
-    for (int i=0; i<6; i++)
+    int i;
+    for (i=0; i<6; i++)
         if (fNeighbors[i]<0)
             break;
