ClassBuilder.st
changeset 7434 aa0faab58aaf
parent 7370 1ed996a6e7bf
child 7487 c1bb5613ae04
--- a/ClassBuilder.st	Fri Jun 20 09:24:24 2003 +0200
+++ b/ClassBuilder.st	Fri Jun 20 09:25:31 2003 +0200
@@ -698,10 +698,10 @@
             "/ since we changed the classes inheritance (from Autoloaded)
 
             "/ actually, could optimize to:
-            "/  Behavior updateSuperclassInfoFor:oldClass superclass.
-            "/  Behavior updateSuperclassInfoFor:newClass superclass.
+            "/  Class updateSuperclassInfoFor:oldClass superclass.
+            "/  Class updateSuperclassInfoFor:newClass superclass.
 
-            Behavior flushSubclassInfo.
+            Class flushSubclassInfo.
         ].
 
         oldClassToBecomeNew notNil ifTrue:[
@@ -914,7 +914,7 @@
     ].
 
     "/ since we will change the inheritance of some class(es)
-    Behavior flushSubclassInfo.
+    Class flushSubclassInfo.
 
     "/ catch special case, where superclass changed its layout and thus
     "/ forced redefinition of this class; 
@@ -1234,7 +1234,7 @@
     (instVarChange or:[classVarChange]) ifTrue:[
         self changeReferencesFrom:oldClass to:newClass.
     ].
-    Behavior flushSubclassInfo.
+    Class flushSubclassInfo.
     ^ newClass
 
     "Created: / 26.5.1996 / 11:55:26 / cg"
@@ -1912,5 +1912,5 @@
 !ClassBuilder class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ClassBuilder.st,v 1.24 2003-06-16 13:35:44 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ClassBuilder.st,v 1.25 2003-06-20 07:25:31 stefan Exp $'
 ! !