ChangeSetBrowser.st
changeset 17989 fe5233911e1b
parent 17027 1e2c7961b922
child 18253 7902bd5cd26e
--- a/ChangeSetBrowser.st	Wed Feb 14 22:31:06 2018 +0100
+++ b/ChangeSetBrowser.st	Thu Feb 15 19:04:46 2018 +0100
@@ -688,11 +688,9 @@
     nm notNil ifTrue:[
         |cls|
 
-        cls := Smalltalk at:(nm asSymbol) ifAbsent:[].
+        cls := Smalltalk classNamed:nm.
         cls notNil ifTrue:[
-            cls isLoaded ifFalse:[
-                cls autoload
-            ]
+            cls autoload.
         ]
     ].
 
@@ -745,6 +743,7 @@
 
     "Created: / 07-02-1998 / 19:32:35 / cg"
     "Modified: / 29-01-2011 / 11:46:44 / cg"
+    "Modified: / 15-02-2018 / 19:01:50 / stefan"
 !
 
 applyPossiblyModifiedChange:aChange