[Pkg] The Trunk: Kernel-fbs.768.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Jun 4 09:09:20 UTC 2013


Frank Shearar uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-fbs.768.mcz

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

Name: Kernel-fbs.768
Author: fbs
Time: 3 June 2013, 10:46:25.818 pm
UUID: b90884d6-3fbb-42ed-a13c-f04ed880c02e
Ancestors: Kernel-fbs.767

These methods ask the user for something. (As in, that's their primary purpose.) As such they belong in the same package as UIManager, ToolBuilder-Kernel.

(I don't see the value of these 'convenience' methods, but I suppose others do.)

=============== Diff against Kernel-fbs.767 ===============

Item was removed:
- ----- Method: Object>>confirm: (in category 'error handling') -----
- confirm: queryString
- 	"Put up a yes/no menu with caption queryString. Answer true if the 
- 	response is yes, false if no. This is a modal question--the user must 
- 	respond yes or no."
- 
- 	"nil confirm: 'Are you hungry?'"
- 
- 	^ UIManager default confirm: queryString!

Item was removed:
- ----- Method: Object>>confirm:orCancel: (in category 'error handling') -----
- confirm: aString orCancel: cancelBlock
- 	"Put up a yes/no/cancel menu with caption aString. Answer true if  
- 	the response is yes, false if no. If cancel is chosen, evaluate  
- 	cancelBlock. This is a modal question--the user must respond yes or no."
- 
- 	^ UIManager default confirm: aString orCancel: cancelBlock!

Item was removed:
- ----- Method: Object>>inform: (in category 'user interface') -----
- inform: aString
- 	"Display a message for the user to read and then dismiss. 6/9/96 sw"
- 
- 	aString isEmptyOrNil ifFalse: [UIManager default inform: aString]!



More information about the Packages mailing list