MenuEditor.st
changeset 2232 1613b21d0095
parent 2189 2ee8670e6307
child 2252 e2804df19f8c
--- a/MenuEditor.st	Thu Jan 10 13:59:39 2008 +0100
+++ b/MenuEditor.st	Thu Jan 10 14:11:31 2008 +0100
@@ -3657,25 +3657,25 @@
 !MenuEditor::Item methodsFor:'queries-editor'!
 
 actionSelectors
-    "returns my action selectors
-    "
+    "return my action selectors"
+
     |value|
 
     value := menuItem value.
     value isSymbol ifTrue:[ ^ Array with:value ].
-  ^ #()
+    ^ #()
 !
 
 aspectSelectors
-    "returns my aspect selectors
-    "
+    "return my aspect selectors"
+
     |aspects|
 
     aspects := OrderedCollection new.
 
     #( indication choice enabled isVisible ) do:[:aKey| |sel|
-	sel := menuItem perform:aKey.
-	sel isSymbol ifTrue:[ aspects add:sel ]
+        sel := menuItem perform:aKey.
+        sel isSymbol ifTrue:[ aspects add:sel ]
     ].
     ^ aspects
 ! !
@@ -5578,8 +5578,8 @@
 !MenuEditor::RootItem methodsFor:'queries-editor'!
 
 actionSelectors
-    "returns my action selectors
-    "
+    "return my action selectors"
+
     ^ #()
 !