send a change notification when autoloading
authorClaus Gittinger <cg@exept.de>
Tue, 14 Nov 2000 18:14:59 +0100
changeset 5705 543d3e8ef7c6
parent 5704 aeeece3a93ef
child 5706 9c49e9b54c45
send a change notification when autoloading
Autoload.st
--- a/Autoload.st	Tue Nov 14 15:04:56 2000 +0100
+++ b/Autoload.st	Tue Nov 14 18:14:59 2000 +0100
@@ -419,6 +419,8 @@
 
     newClass initializeWithAllPrivateClasses.
     newClass postAutoload.
+
+    Smalltalk changed:#classDefinition with:newClass.
     ^ newClass
 
     "Modified: / 5.3.1999 / 12:59:13 / cg"
@@ -599,6 +601,6 @@
 !Autoload class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.105 2000-08-16 12:06:22 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.106 2000-11-14 17:14:59 cg Exp $'
 ! !
 Autoload initialize!