[Pkg] The Trunk: Nebraska-tpr.49.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Aug 7 23:42:55 UTC 2017


tim Rowledge uploaded a new version of Nebraska to project The Trunk:
http://source.squeak.org/trunk/Nebraska-tpr.49.mcz

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

Name: Nebraska-tpr.49
Author: tpr
Time: 7 August 2017, 4:42:46.935605 pm
UUID: 867ebd6a-962c-4bee-be61-21636ad6c4b4
Ancestors: Nebraska-ul.48

Correct an ancient underscore assignment

=============== Diff against Nebraska-ul.48 ===============

Item was changed:
  ----- Method: NebraskaCommunicatorMorph>>textEntryFieldNamed:with:help: (in category 'as yet unclassified') -----
  textEntryFieldNamed: aSymbol with: aString help: helpString
  
  	| f col |
+ 	f := (StringMorph new contents: aString; font: Preferences standardEToysFont; yourself)
- 	f _ (StringMorph new contents: aString; font: Preferences standardEToysFont; yourself)
  		setBalloonText: helpString;
  		on: #mouseUp send: #editEvent:for: to: self.
  	self field: aSymbol is: f.
  	col _ (self inAColumn: {f}) color: Color white; hResizing: #shrinkWrap.
  	^col!

Item was changed:
  ----- Method: NebraskaListenerMorph class>>removeAllFromGlobalIncomingQueue (in category 'as yet unclassified') -----
  removeAllFromGlobalIncomingQueue
  
  	self critical: [
+ 		GlobalIncomingQueue := OrderedCollection new.
- 		GlobalIncomingQueue _ OrderedCollection new.
  		self bumpUpdateCounter.
  	].!



More information about the Packages mailing list