# HG changeset patch # User Claus Gittinger # Date 1462667167 -7200 # Node ID 911a495e2ed7a6fa5cc0a93a7458d71de835dde3 # Parent f29412454cd5bb4a8a71734866eb5c2fdc4d6c46 #TUNING by cg class: UIPainterView changed: #listOfAspects #listOfCallbacks diff -r f29412454cd5 -r 911a495e2ed7 UIPainterView.st --- a/UIPainterView.st Fri May 06 04:58:41 2016 +0200 +++ b/UIPainterView.st Sun May 08 02:26:07 2016 +0200 @@ -1766,7 +1766,7 @@ cls notNil ifTrue:[ cls withAllSuperclassesDo:[:cls | cls methodsDo:[:m | - ((m resources ? #()) includesAny:#(uiAspect)) ifTrue:[ + ((m resources ? #()) includes:#uiAspect) ifTrue:[ aspects add:m selector ]. ] @@ -1799,7 +1799,7 @@ cls := self targetClass. cls notNil ifTrue:[ cls methodsDo:[:m | - ((m resources ? #()) includesAny:#(uiCallback)) ifTrue:[ + ((m resources ? #()) includes:#uiCallback) ifTrue:[ aspects add:m selector ]. ]