Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 9208)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 9209)
@@ -37,2 +37,7 @@
      - added WriteBinary
 
+   * mbase/MEvtLoop.cc:
+     - display paused status in status line
+     - improved pause handling
+
+
Index: /trunk/MagicSoft/Mars/mbase/MTime.cc
===================================================================
--- /trunk/MagicSoft/Mars/mbase/MTime.cc	(revision 9208)
+++ /trunk/MagicSoft/Mars/mbase/MTime.cc	(revision 9209)
@@ -954,10 +954,10 @@
     GetTime(h, m, s, ms);
 
-    out.read((char*)&y,   2);
-    out.read((char*)&mon, 1);
-    out.read((char*)&d,   1);
-    out.read((char*)&h,   1);
-    out.read((char*)&m,   1);
-    out.read((char*)&s,   1); // Total=7
+    out.write((char*)&y,   2);
+    out.write((char*)&mon, 1);
+    out.write((char*)&d,   1);
+    out.write((char*)&h,   1);
+    out.write((char*)&m,   1);
+    out.write((char*)&s,   1); // Total=7
 }
 
