ProjectDefinition.st
changeset 10058 290deec5f493
parent 10047 db630ab99570
child 10063 580a7b4b4b81
--- a/ProjectDefinition.st	Mon Oct 09 11:18:47 2006 +0200
+++ b/ProjectDefinition.st	Mon Oct 09 13:36:45 2006 +0200
@@ -616,7 +616,7 @@
                         attributes := #()
                     ].
                     eachClass isLoaded ifFalse:[
-                         attributes := attributes copyWith:#autoload.
+                        attributes := attributes copyWith:#autoload.
                     ].
                 ] ifFalse:[
                     "keep any existing attribute"
@@ -647,7 +647,7 @@
 
     "Modified: / 08-08-2006 / 19:24:34 / fm"
     "Created: / 17-08-2006 / 21:03:07 / cg"
-    "Modified: / 19-09-2006 / 17:14:17 / cg"
+    "Modified: / 09-10-2006 / 13:27:23 / cg"
 !
 
 companyName_code
@@ -1047,12 +1047,12 @@
 
     ^ self 
         classNamesForWhich:[:nm :attr | 
-            (attr includes:#autoload) not and:[ (attr includes:platformName) ]
+            "(attr includes:#autoload) not and:[" (attr includes:platformName)" ]"
         ].
 
     "Created: / 07-08-2006 / 19:02:57 / fm"
     "Modified: / 07-08-2006 / 21:25:25 / fm"
-    "Modified: / 17-08-2006 / 20:47:20 / cg"
+    "Modified: / 09-10-2006 / 13:30:08 / cg"
 !
 
 compiled_classNames_common
@@ -3257,7 +3257,7 @@
 !ProjectDefinition class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.88 2006-10-06 13:49:45 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.89 2006-10-09 11:36:45 cg Exp $'
 ! !
 
 ProjectDefinition initialize!