*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Fri, 22 Mar 1996 16:10:25 +0100
changeset 95 afc59b08e138
parent 94 5d3e35026d1b
child 96 331aeb93367f
*** empty log message ***
smalltalk.rc
--- a/smalltalk.rc	Fri Mar 08 22:34:58 1996 +0100
+++ b/smalltalk.rc	Fri Mar 22 16:10:25 1996 +0100
@@ -246,9 +246,9 @@
 "/ NOTICE: you should do that in your 'private.rc'-file
 "/
 
-NewLauncher notNil ifTrue:[
+(Smalltalk at:#NewLauncher) notNil ifTrue:[
     'starting main-menu ...' errorPrintNL.
-    NewLauncher open
+    (Smalltalk at:#NewLauncher) open
 ] ifFalse:[
     "*
      * start a Transcript (if linked-in)
@@ -262,9 +262,9 @@
     "*
      * start the Launcher (if linked-in)
      *"
-    Launcher notNil ifTrue:[
+    (Smalltalk at:#Launcher) notNil ifTrue:[
 	'starting main-menu ...' errorPrintNL.
-	Launcher open
+	(Smalltalk at:#Launcher) open
     ].
 ].