diff -r ae58d3ccbbfd -r 1613b21d0095 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" + ^ #() !