hasExtensions is a bad name (conflicts with the other query)
authorClaus Gittinger <cg@exept.de>
Fri, 15 Sep 2006 19:34:14 +0200
changeset 9906 9efd21c9b1b6
parent 9905 625e0c143984
child 9907 8f907d537b9c
hasExtensions is a bad name (conflicts with the other query)
ProjectDefinition.st
--- a/ProjectDefinition.st	Fri Sep 15 18:23:24 2006 +0200
+++ b/ProjectDefinition.st	Fri Sep 15 19:34:14 2006 +0200
@@ -1437,7 +1437,7 @@
                 ].
             ].
 
-            self hasExtensions ifTrue:[
+            self hasExtensionMethods ifTrue:[
                 s nextPutLine:'  ''extensions.st'''.    
             ].
 
@@ -1789,7 +1789,7 @@
 !
 
 postAutoload
-    self hasExtensions ifTrue:[
+    self hasExtensionMethods ifTrue:[
         self loadExtensions
     ].
 
@@ -2059,7 +2059,7 @@
             (Class classesSortedByLoadOrder:archClassesLoaded) do:putDependencyForClass.
         ].
 
-        self hasExtensions ifTrue:putDependencyForExtensions.
+        self hasExtensionMethods ifTrue:putDependencyForExtensions.
     ]
 
     "
@@ -2177,7 +2177,7 @@
             ].
         ].
 
-        self hasExtensions ifTrue:[
+        self hasExtensionMethods ifTrue:[
             s nextPutLine:'    $(OUTDIR)extensions.$(O) \'. 
         ].
         s cr.
@@ -2604,7 +2604,7 @@
     "Created: / 17-08-2006 / 00:50:01 / cg"
 !
 
-hasExtensions
+hasExtensionMethods
     ^ self extensionMethodNames notEmpty
 
     "Created: / 14-09-2006 / 14:19:35 / cg"
@@ -2844,7 +2844,7 @@
 !ProjectDefinition class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.64 2006-09-15 14:57:04 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.65 2006-09-15 17:34:14 cg Exp $'
 ! !
 
 ProjectDefinition initialize!