Metaclass.st
changeset 85 1343af456e28
parent 77 6c38ca59927f
child 88 81dacba7a63a
--- a/Metaclass.st	Thu Jun 02 13:20:08 1994 +0200
+++ b/Metaclass.st	Thu Jun 02 13:21:56 1994 +0200
@@ -26,7 +26,7 @@
 Metaclass provides support for creating new (sub)classes and/or 
 changing the definition of an already existing class.
 
-$Header: /cvs/stx/stx/libbasic/Metaclass.st,v 1.11 1994-05-17 10:08:07 claus Exp $
+$Header: /cvs/stx/stx/libbasic/Metaclass.st,v 1.12 1994-06-02 11:20:51 claus Exp $
 '!
 
 !Metaclass methodsFor:'creating classes'!
@@ -709,8 +709,9 @@
     newClass dependents:(oldClass dependents).
     newClass changed.
 
-    "just to make certain ..."
-    oldClass changed.
+    "just to make certain ... - telle dependents of oldClass, that something changed
+     (systemBrowsers will react on this, and update their views)"
+    oldClass changed:newClass.
 
     ObjectMemory flushCaches.