[squeak-dev] The Trunk: Compiler-mt.464.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Dec 8 15:31:35 UTC 2021


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

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

Name: Compiler-mt.464
Author: mt
Time: 8 December 2021, 4:31:34.052213 pm
UUID: ee3296af-3a20-5541-849a-806f4c73bd05
Ancestors: Compiler-mt.463

Clean up two dialogs around compilation.

=============== Diff against Compiler-mt.463 ===============

Item was changed:
  ----- Method: UndefinedVariable>>openMenuIn: (in category 'as yet unclassified') -----
  openMenuIn: aBlock
  
+ 	self resume: (Project uiManager
+ 		confirm: ('{1} appears to be undefined at this point.\Proceed anyway?' withCRs translated asText
+ 			format: {name asText allBold})
+ 		orCancel: [false]
+ 		title: 'Undefined Variable' translated).!
- 	^ self resume: (UIManager default
- 		confirm: name asText allBold, ' appears to be undefined at this point.\Proceed anyway?' withCRs
- 		title: 'Undefined Variable').!

Item was changed:
  ----- Method: UnusedVariable>>openMenuIn: (in category 'handling') -----
  openMenuIn: aBlock
  	
+ 	self resume: (Project uiManager
+ 		confirm: ('{1} appears to be unused in this method.\Remove it from the code?' withCRs translated asText
- 	self resume: (UIManager default
- 		confirm: ('{1} appears to be unused in this method.\Remove it from the code?' withCRs translated
  			format: {name asText allBold})
  		orCancel: [nil]
  		title: 'Unused Variable' translated).!



More information about the Squeak-dev mailing list