ca's english language and wierd indentation code cleanup
authorClaus Gittinger <cg@exept.de>
Thu, 10 Jan 2008 14:11:31 +0100
changeset 2232 1613b21d0095
parent 2231 ae58d3ccbbfd
child 2233 fb9fc4255b18
ca's english language and wierd indentation code cleanup
MenuEditor.st
--- 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"
+
     ^ #()
 !