The Trunk: Tools-mt.624.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-mt.624.mcz

commits-2
Marcel Taeumel uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-mt.624.mcz

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

Name: Tools-mt.624
Author: mt
Time: 8 May 2015, 11:27:45.242 am
UUID: a2e38d15-f1d7-bb41-9f2e-d2f9f5eb5f47
Ancestors: Tools-mt.623

Some other regressions fixed in Message Names tool regarding selections.

=============== Diff against Tools-mt.623 ===============

Item was changed:
  ----- Method: MessageNames>>initialize (in category 'initialization') -----
  initialize
 
  super initialize.
 
  searchString := ValueHolder new contents: ''.
  searchString addDependent: self.
 
  selectorList := #().
+ selectorListIndex := 0.
+
+ self messageListIndex: 0.!
- selectorListIndex := 0.!

Item was changed:
  ----- Method: MessageNames>>selectorListIndex: (in category 'selector list') -----
  selectorListIndex: anInteger
  "Set the selectorListIndex as specified, and propagate consequences"
 
  selectorListIndex := anInteger.
  self changed: #selectorListIndex.
 
  messageList := self computeMessageList.
+ self changed: #messageList.
+
+ "Select the first message if any."
+ self messageListIndex: (1 min: messageList size).!
- self changed: #messageList.!