# HG changeset patch # User Claus Gittinger # Date 1566727857 -7200 # Node ID 0bfa90576a61ebf6c9474dedcc1dea9efb60be56 # Parent 286a4b165f0b2e8cb0753984210af91a01a44466 #BUGFIX by exept class: Tools::ViewTreeInspectorApplication::ViewTreeModel do MUST return self comment/format in: #collect: #select: changed: #from:do: #from:to:do: #reverseDo: diff -r 286a4b165f0b -r 0bfa90576a61 Tools__ViewTreeApplication.st --- a/Tools__ViewTreeApplication.st Sun Aug 25 12:10:12 2019 +0200 +++ b/Tools__ViewTreeApplication.st Sun Aug 25 12:10:57 2019 +0200 @@ -4404,7 +4404,7 @@ res := OrderedCollection new. self do:[:el| res add:(aBlock value:el)]. - ^ res + ^ res ! do:aOneArgBlock @@ -4427,7 +4427,7 @@ "/ the selection may change at any time (may it?) (keptSelection := selection) isNil ifTrue:[^ nil]. "/ but if so, then start may no longer be valid here?? - ^ keptSelection from:start do:aOneArgBlock + keptSelection from:start do:aOneArgBlock "Modified (comment): / 12-02-2017 / 11:52:57 / cg" ! @@ -4441,7 +4441,7 @@ "/ the selection may change at any time (may it?) (keptSelection := selection) isNil ifTrue:[^ nil]. "/ but if so, then start and stop may no longer be valid here?? - ^ keptSelection from:start to:stop do:aOneArgBlock + keptSelection from:start to:stop do:aOneArgBlock "Modified (comment): / 12-02-2017 / 11:52:25 / cg" ! @@ -4453,7 +4453,7 @@ "/ the selection may change at any time (may it?) (keptSelection := selection) isNil ifTrue:[^ nil]. - ^ keptSelection reverseDo:aOneArgBlock + keptSelection reverseDo:aOneArgBlock "Modified: / 12-02-2017 / 11:50:02 / cg" ! @@ -4466,7 +4466,7 @@ res := OrderedCollection new. self do:[:el| (aBlock value:el) ifTrue:[res add:el] ]. - ^ res + ^ res ! ! !ViewTreeInspectorApplication::ViewTreeModel methodsFor:'selection protocol'!