*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Tue, 05 Sep 2006 16:08:19 +0200
changeset 9824 10923af2c033
parent 9823 fb8bc237f370
child 9825 bc6dabcabfcb
*** empty log message ***
ProjectDefinition.st
--- a/ProjectDefinition.st	Tue Sep 05 16:08:17 2006 +0200
+++ b/ProjectDefinition.st	Tue Sep 05 16:08:19 2006 +0200
@@ -2087,16 +2087,13 @@
         self error:'I am abstract - must be a subclass of Libray- or ApplicationDefinition.'
     ].
 
-    Class packageQuerySignal 
-        answer:self package
-        do:[
-            self 
-                forEachMethodsCodeToCompileDo:[:code :category |
-                    self compile:code categorized:category
-                ].
-            self instAndClassMethodsDo:[:m | m package:self package].
+    self 
+        forEachMethodsCodeToCompileDo:[:code :category |
+            self compile:code categorized:category
         ].
 
+"/    self instAndClassMethodsDo:[:m | m package:self package].
+
     "
      DapasXProject compileDescriptionMethods
      DapasX_Datenbasis compileDescriptionMethods
@@ -2105,7 +2102,7 @@
     "
 
     "Created: / 09-08-2006 / 18:00:31 / fm"
-    "Modified: / 23-08-2006 / 14:38:03 / cg"
+    "Modified: / 05-09-2006 / 13:46:29 / cg"
 !
 
 description_code
@@ -2214,7 +2211,7 @@
 !ProjectDefinition class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.48 2006-08-30 18:52:30 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.49 2006-09-05 14:08:19 cg Exp $'
 ! !
 
 ProjectDefinition initialize!