SettingsDialog.st
changeset 5253 193cbf909cef
parent 5164 35a9d096be9b
child 5345 66a91b703580
--- a/SettingsDialog.st	Wed Oct 08 17:34:27 2003 +0200
+++ b/SettingsDialog.st	Wed Oct 08 17:36:57 2003 +0200
@@ -847,7 +847,7 @@
     " create all the categories before application itself
     "
 
-    (aName includes:$/) not ifTrue:[ ^ self].
+    (aName includes:$/) ifFalse:[ ^ self].
     self treeName:aName butLast:1 do:[:currentLabel :currentName| | length icon|
         currentLabel notEmpty ifTrue:[
             icon := self categoryIcons at:currentName ifAbsent:[nil].
@@ -1317,7 +1317,7 @@
 !SettingsDialog class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/SettingsDialog.st,v 1.41 2003-09-10 14:51:14 penk Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/SettingsDialog.st,v 1.42 2003-10-08 15:36:57 cg Exp $'
 ! !
 
 SettingsDialog initialize!