HistoryManager.st
changeset 2641 e15145843efe
parent 2517 71374f69ec64
child 2875 4fe2f4522753
child 3011 1997ff6e7e55
--- a/HistoryManager.st	Sun Dec 04 15:40:55 2011 +0100
+++ b/HistoryManager.st	Sun Dec 04 15:45:34 2011 +0100
@@ -125,7 +125,7 @@
     "because there can be only ONE HistoryManager, new must me redefiend"
 
     TheOneAndOnlyInstance isNil ifTrue:[
-        TheOneAndOnlyInstance := super new initialize.
+        TheOneAndOnlyInstance := self basicNew initialize.
         HistoryLine initialize.
     ].
 
@@ -136,7 +136,8 @@
     HistoryManager new.
 "
 
-    "Modified: 11.08.1995 / 17:01:29 / robert"
+    "Modified: / 11-08-1995 / 17:01:29 / robert"
+    "Modified: / 04-12-2011 / 08:54:22 / cg"
 ! !
 
 !HistoryManager class methodsFor:'accessing'!
@@ -1002,7 +1003,7 @@
 !
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic3/HistoryManager.st,v 1.81 2011-09-07 19:39:22 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic3/HistoryManager.st,v 1.82 2011-12-04 14:45:34 cg Exp $'
 ! !
 
 !HistoryManager::HistoryLine class methodsFor:'filtering'!
@@ -1697,7 +1698,7 @@
 !HistoryManager class methodsFor:'documentation'!
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic3/HistoryManager.st,v 1.81 2011-09-07 19:39:22 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic3/HistoryManager.st,v 1.82 2011-12-04 14:45:34 cg Exp $'
 ! !
 
 HistoryManager initialize!