*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Mon, 23 Oct 2006 16:30:30 +0200
changeset 10119 3d8028cacf74
parent 10118 09e2a0897cc5
child 10120 cc81848112f4
*** empty log message ***
ProjectDefinition.st
--- a/ProjectDefinition.st	Mon Oct 23 16:29:04 2006 +0200
+++ b/ProjectDefinition.st	Mon Oct 23 16:30:30 2006 +0200
@@ -581,9 +581,12 @@
     GUIApplicationType := #'GUI-Application'.
     NonGUIApplicationType := #'NonGUI-Application'.
 
-'initialize' errorPrintCR.
+'initialize ProjectDefinition' errorPrintCR.
+'sub: ' errorPrintCR.
+self allSubclasses errorPrintCR.
+
     self allSubclassesDo:[:eachProjectDefinitionClass |
-'initialize' errorPrint. eachProjectDefinitionClass name errorPrintCR.
+'installAutoloaded ' errorPrint. eachProjectDefinitionClass name errorPrintCR.
         eachProjectDefinitionClass installAutoloadedClasses.
     ].
 
@@ -591,13 +594,13 @@
      self initialize
     "
 
-    "Modified: / 23-10-2006 / 16:27:25 / cg"
+    "Modified: / 23-10-2006 / 16:30:48 / cg"
 !
 
 installAutoloadedClasses
     (self classNamesForWhich:[:nm :attr | (attr includes:#autoload)]) 
         do:[:className |
-'autoloaded: ' errorPrint. className errorPrintCR.
+'install as autoloaded: ' errorPrint. className errorPrintCR.
             (Smalltalk classNamed:className) isNil ifTrue:[
                 Smalltalk
                     installAutoloadedClassNamed:className
@@ -3407,7 +3410,7 @@
 !ProjectDefinition class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.105 2006-10-23 14:27:07 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.106 2006-10-23 14:30:30 cg Exp $'
 ! !
 
 ProjectDefinition initialize!