Autoload.st
changeset 11205 e8543aa62c15
parent 11171 b95546993eb8
child 11951 ad1b5aa67b16
child 17711 39faaaf888b4
--- a/Autoload.st	Tue Oct 07 16:23:57 2008 +0200
+++ b/Autoload.st	Thu Oct 09 20:53:58 2008 +0200
@@ -184,12 +184,12 @@
     ].
 
     myName := self name.
-    aStream nextPutAll:'"' ; nextPutLine:'Notice from Autoload:'; cr;
-            spaces:4; nextPutLine:myName , ' is not yet loaded.'; cr.
+    aStream nextPutAll:'"' ; nextPutLine:'Notice:'; cr;
+            spaces:4; nextPutLine:'The ',myName,' class is not yet loaded.'; cr.
     aStream nextPutLine:'to load, execute: '.
     aStream cr; spaces:4; nextPutLine:myName  , ' autoload'.
-    aStream cr; nextPutLine:'or use the browsers load-function (in the class menu)'.
-    aStream nextPutLine:'(double-click on the class will also load it).'.
+    aStream cr; nextPutLine:'or use the browsers load-function (in the classLists ''special'' menu)'.
+    aStream nextPutLine:'(a double-click on the class will also load it).'.
     "
      the following is simply informative ...
      actually, its a hack & kludge - there ought to be a method for this
@@ -924,7 +924,7 @@
 !Autoload class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.149 2008-09-22 12:06:53 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.150 2008-10-09 18:53:58 cg Exp $'
 ! !
 
 Autoload initialize!