ProjectView.st
changeset 904 df0b2ed7a462
parent 893 39307a122c30
child 955 31a5221235f1
--- a/ProjectView.st	Sat Jan 04 16:01:05 1997 +0100
+++ b/ProjectView.st	Sat Jan 04 16:40:42 1997 +0100
@@ -482,14 +482,14 @@
         |p|
 
         (classesToRemove includes:aClass) ifFalse:[
-            aClass methodArray do:[:aMethod |
+            aClass methodDictionary keysAndValuesDo:[:sel :aMethod |
                 (p := aMethod package) notNil ifTrue:[
                     p = theProject  ifTrue:[
                         methodsToRemove add:aMethod
                     ]
                 ]
             ].
-            aClass class methodArray do:[:aMethod |
+            aClass class methodDictionary keysAndValuesDo:[:sel :aMethod |
                 (p := aMethod package) notNil ifTrue:[
                     p = theProject  ifTrue:[
                         methodsToRemove add:aMethod
@@ -634,5 +634,5 @@
 !ProjectView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/ProjectView.st,v 1.33 1997-01-02 19:28:46 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/ProjectView.st,v 1.34 1997-01-04 15:40:42 cg Exp $'
 ! !