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

commits at source.squeak.org commits at source.squeak.org
Fri May 1 16:02:25 UTC 2015


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

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

Name: Tools-mt.614
Author: mt
Time: 1 May 2015, 6:02:03.582 pm
UUID: d14a1b9e-198e-e549-931c-440d9c40d12c
Ancestors: Tools-mt.613

Some descriptive balloon texts added to browser's switch buttons.

=============== Diff against Tools-mt.613 ===============

Item was changed:
  ----- Method: Browser>>buildSwitchesWith: (in category 'toolbuilder') -----
  buildSwitchesWith: builder
  	"Build the instance/comment/class switch"
  
  	| panelSpec buttonSpec |
  	panelSpec := builder pluggablePanelSpec new
  		layout: #horizontal;
  		children: OrderedCollection new;
  		yourself.
  
  	buttonSpec := builder pluggableButtonSpec new.
  	buttonSpec 
  			model: self;
+ 			label: 'instance';
+ 			help: 'Show instance-side methods' translated;
- 			label: 'instance'; 
  			state: #instanceMessagesIndicated; 
  			action: #indicateInstanceMessages.
  	panelSpec children addLast: buttonSpec.
  
  	buttonSpec := builder pluggableButtonSpec new.
  	buttonSpec 
  			model: self;
  			label: '?';
  			help: 'Cycle between definition, comment, and hierarchy view' translated; 
  			state: #classCommentIndicated; 
  			action: #plusButtonHit.
  	panelSpec children addLast: buttonSpec.
  
  	buttonSpec := builder pluggableButtonSpec new.
  	buttonSpec 
  			model: self;
+ 			label: 'class';
+ 			help: 'Show class-side methods' translated;
- 			label: 'class'; 
  			state: #classMessagesIndicated; 
  			action: #indicateClassMessages.
  	panelSpec children addLast: buttonSpec.
  
  	^panelSpec!



More information about the Squeak-dev mailing list