bugfix
authorca
Tue, 27 Feb 2007 16:20:51 +0100
changeset 10412 fa1eff38ab64
parent 10411 afaedcfe3488
child 10413 70670d59c2e9
bugfix
ProjectDefinition.st
--- a/ProjectDefinition.st	Thu Feb 22 17:43:38 2007 +0100
+++ b/ProjectDefinition.st	Tue Feb 27 16:20:51 2007 +0100
@@ -2294,7 +2294,7 @@
             self loadClassLibrary.
         ].
         newStuffHasBeenLoaded := newStuffHasBeenLoaded | self loadExtensions.
-        newStuffHasBeenLoaded := newStuffHasBeenLoaded | self loadAllClassesAsAutoloaded:asAutoloaded.
+        newStuffHasBeenLoaded := newStuffHasBeenLoaded | (self loadAllClassesAsAutoloaded:asAutoloaded).
         self loadSubProjectsAsAutoloaded:asAutoloaded.
     ].
 
@@ -3718,7 +3718,7 @@
 !ProjectDefinition class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.149 2007-02-22 15:03:46 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.150 2007-02-27 15:20:51 ca Exp $'
 ! !
 
 ProjectDefinition initialize!