#BUGFIX by exept
authorClaus Gittinger <cg@exept.de>
Sun, 25 Aug 2019 12:10:57 +0200
changeset 3746 0bfa90576a61
parent 3745 286a4b165f0b
child 3747 92077573d5c4
#BUGFIX by exept class: Tools::ViewTreeInspectorApplication::ViewTreeModel do MUST return self comment/format in: #collect: #select: changed: #from:do: #from:to:do: #reverseDo:
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'!