[squeak-dev] The Trunk: Tools-mt.624.mcz

commits at source.squeak.org commits at source.squeak.org
Fri May 8 09:28:04 UTC 2015


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.!



More information about the Squeak-dev mailing list