changed #listAtCategoryNamed:
authorClaus Gittinger <cg@exept.de>
Fri, 10 Nov 2006 17:23:03 +0100
changeset 1895 c3b43165a0cc
parent 1894 4b91039e6bbb
child 1896 ed785b09f5b1
changed #listAtCategoryNamed:
SystemOrganizer.st
--- a/SystemOrganizer.st	Fri Nov 10 14:26:17 2006 +0100
+++ b/SystemOrganizer.st	Fri Nov 10 17:23:03 2006 +0100
@@ -9,9 +9,6 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
-
-
-
 "{ Package: 'stx:libbasic3' }"
 
 Object subclass:#SystemOrganizer
@@ -191,7 +188,7 @@
         |cat|
 
         aClass isMeta ifFalse:[
-            (aClass isNameSpace not or:[aClass == Smalltalk]) ifTrue:[
+            (aClass isRealNameSpace not) ifTrue:[
                 (allNames or:[aClass nameSpace == nameSpace]) ifTrue:[
                     cat := aClass category.
                     cat = aCategory ifTrue:[
@@ -209,7 +206,7 @@
      (SystemOrganizer for:Demos) listAtCategoryNamed:'Collections-Abstract' 
     "
 
-    "Modified: / 21.8.2001 / 15:23:52 / cg"
+    "Modified: / 10-11-2006 / 17:12:56 / cg"
 ! !
 
 !SystemOrganizer methodsFor:'change and update'!
@@ -242,5 +239,5 @@
 !SystemOrganizer class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic3/SystemOrganizer.st,v 1.11 2006-08-23 17:33:45 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic3/SystemOrganizer.st,v 1.12 2006-11-10 16:23:03 cg Exp $'
 ! !