class: AbstractLauncherApplication
authorClaus Gittinger <cg@exept.de>
Sat, 08 Feb 2014 22:59:08 +0100
changeset 13918 fc3939049f84
parent 13917 2e1f7f77627e
child 13919 7845042988b5
class: AbstractLauncherApplication changed: #findApplicationClass:nameSpace:
AbstractLauncherApplication.st
--- a/AbstractLauncherApplication.st	Sat Feb 08 12:42:02 2014 +0100
+++ b/AbstractLauncherApplication.st	Sat Feb 08 22:59:08 2014 +0100
@@ -730,12 +730,12 @@
                 ].
                 cls := Smalltalk at:classOrClassName asSymbol.
                 cls isNil ifTrue:[
-                    "/ look if its in the nameSpace
+                    "/ look if it's in the nameSpace
                     aNameSpace notNil ifTrue:[
                         cls := aNameSpace at:classOrClassName asSymbol
                     ].
                     cls isNil ifTrue:[
-                        Dialog warn:(resources stringWithCRs:'Autoload failed.\\Sorry, please check the demos & client directories and load manually.').
+                        Dialog warn:(resources stringWithCRs:'Autoload failed.\\Sorry, please check the "stx:clients/demos" & "stx:goodies/clients" directories and load manually.').
                         ^ nil
                     ]
                 ].
@@ -6944,14 +6944,14 @@
 !AbstractLauncherApplication class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.446 2014-02-05 19:09:11 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.447 2014-02-08 21:59:08 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.446 2014-02-05 19:09:11 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.447 2014-02-08 21:59:08 cg Exp $'
 !
 
 version_SVN
-    ^ '$Id: AbstractLauncherApplication.st,v 1.446 2014-02-05 19:09:11 cg Exp $'
+    ^ '$Id: AbstractLauncherApplication.st,v 1.447 2014-02-08 21:59:08 cg Exp $'
 ! !