Disable the #postAutoload action.
authorStefan Vogel <sv@exept.de>
Mon, 27 Nov 2006 18:46:45 +0100
changeset 10200 0d96fe352bd5
parent 10199 803db693a6af
child 10201 f90568a94903
Disable the #postAutoload action. This prevented the loading of the SMC project.
ProjectDefinition.st
--- a/ProjectDefinition.st	Mon Nov 27 18:11:31 2006 +0100
+++ b/ProjectDefinition.st	Mon Nov 27 18:46:45 2006 +0100
@@ -2367,10 +2367,14 @@
 !
 
 postAutoload
-    self hasExtensionMethods ifTrue:[
-        self loadExtensions
-    ].
-    self loadPreRequisites:false.
+    "why should we do this?
+     we want to load the definition here -
+     send #load to load the project!! (SV)"
+
+"/    self hasExtensionMethods ifTrue:[
+"/        self loadExtensions
+"/    ].
+"/    self loadPreRequisites:false.
 
     "Created: / 17-08-2006 / 00:21:29 / cg"
     "Modified: / 24-10-2006 / 23:48:19 / cg"
@@ -3617,7 +3621,7 @@
 !ProjectDefinition class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.122 2006-11-27 17:11:31 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.123 2006-11-27 17:46:45 stefan Exp $'
 ! !
 
 ProjectDefinition initialize!