ProtoObject.st
changeset 23415 45a9485a7d59
parent 23194 bc61e26c72d9
child 23642 1ab778abeb7c
--- a/ProtoObject.st	Wed Oct 10 00:44:36 2018 +0200
+++ b/ProtoObject.st	Wed Oct 10 00:44:51 2018 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2004 by eXept Software AG
               All Rights Reserved
@@ -181,7 +183,7 @@
     Inspector ~~ MiniInspector ifTrue:[
         |cls|
 
-        cls := Smalltalk classNamed: #'Tools::Inspector2'.
+        cls := #'Tools::Inspector2' asClassIfAbsent:nil.
         cls notNil ifTrue:[
             ^ cls.
         ].
@@ -189,9 +191,10 @@
     Inspector notNil ifTrue:[
         ^ Inspector.
     ].
-    ^ Smalltalk classNamed: #'InspectorView'.
+    ^ #'InspectorView' asClassIfAbsent:nil.
 
     "Created: / 29-11-2017 / 10:20:09 / stefan"
+    "Modified: / 10-10-2018 / 00:43:48 / Claus Gittinger"
 !
 
 instVarAt:index