The Trunk: Tools-dtl.182.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Tools-dtl.182.mcz

commits-2
David T. Lewis uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-dtl.182.mcz

==================== Summary ====================

Name: Tools-dtl.182
Author: dtl
Time: 12 February 2010, 10:02:47.695 pm
UUID: 50520faa-9fae-48de-a457-848ab50268ff
Ancestors: Tools-dtl.181

Remove dependency on MVC FillInTheBlank from MessageSet.

=============== Diff against Tools-dtl.181 ===============

Item was changed:
  ----- Method: MessageSet>>filterToMatchingClassesNames (in category 'filtering') -----
  filterToMatchingClassesNames
 
  | reply |
 
+ reply := UIManager default
- reply := FillInTheBlank
  request: 'Type the string to match'
  initialAnswer: 'ClassName*'
  centerAt: Sensor cursorPoint.
  reply isEmptyOrNil ifTrue: [^ self].
 
  self filterFrom: [:aClass :aSelector | reply match: aClass name asString]
  !