class: AbstractLauncherApplication
authorClaus Gittinger <cg@exept.de>
Tue, 09 Jul 2013 22:46:11 +0200
changeset 13149 b8c7f534bb20
parent 13148 7d22f13b1a2d
child 13150 5d47f15f9ccc
class: AbstractLauncherApplication changed: #findApplicationClass:nameSpace:
AbstractLauncherApplication.st
--- a/AbstractLauncherApplication.st	Tue Jul 09 22:37:10 2013 +0200
+++ b/AbstractLauncherApplication.st	Tue Jul 09 22:46:11 2013 +0200
@@ -720,10 +720,11 @@
                 ].
                 self withWaitCursorDo:[
                     #(
-                        'stx:clients/Demos'
+                        'stx:clients'
                         'stx:goodies/demos'
+                        'stx:libwidg3'
                     ) do:[:pkg |
-                        Smalltalk installAutoloadedClassesFrom:(Smalltalk projectDirectoryForPackage:pkg).
+                        Smalltalk recursiveInstallAutoloadedClassesFrom:(Smalltalk projectDirectoryForPackage:pkg).
                     ].
                 ].
                 cls := Smalltalk at:classOrClassName asSymbol.
@@ -7054,14 +7055,14 @@
 !AbstractLauncherApplication class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.436 2013-07-09 20:23:16 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.437 2013-07-09 20:46:11 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.436 2013-07-09 20:23:16 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.437 2013-07-09 20:46:11 cg Exp $'
 !
 
 version_SVN
-    ^ '$Id: AbstractLauncherApplication.st,v 1.436 2013-07-09 20:23:16 cg Exp $'
+    ^ '$Id: AbstractLauncherApplication.st,v 1.437 2013-07-09 20:46:11 cg Exp $'
 ! !