Catch #fromString: (for autoloaded classes from Dolphin)
authorStefan Vogel <sv@exept.de>
Wed, 26 Jan 2005 15:41:06 +0100
changeset 8709 25088287bbd0
parent 8708 fd7eba3420e1
child 8710 ae48e69c5b8b
Catch #fromString: (for autoloaded classes from Dolphin)
Autoload.st
--- a/Autoload.st	Wed Jan 26 15:02:39 2005 +0100
+++ b/Autoload.st	Wed Jan 26 15:41:06 2005 +0100
@@ -517,6 +517,12 @@
     ^ self doesNotUnderstand:(Message selector:#error)
 !
 
+fromString:aString
+    "catch  - load the class and send it to the real one"
+
+    ^ self doesNotUnderstand:(Message selector:#fromString: argument:aString)
+!
+
 new
     "catch new - load the class and resend #new to the real one"
 
@@ -852,7 +858,7 @@
 !Autoload class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.128 2004-09-23 13:06:42 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.129 2005-01-26 14:41:06 stefan Exp $'
 ! !
 
 Autoload initialize!