The Trunk: Help-Squeak-Project-mt.114.mcz

[email protected] Fri, 31 Jul 2026 14:52:58 0000
Newsgroups gmane.comp.lang.smalltalk.squeak.general
Message-ID <[email protected]>
Marcel Taeumel uploaded a new version of Help-Squeak-Project to project The Trunk:
http://source.squeak.org/trunk/Help-Squeak-Project-mt.114.mcz

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

Name: Help-Squeak-Project-mt.114
Author: mt
Time: 31 July 2026, 4:52:57.396934 pm
UUID: 825d3058-bfb1-1047-8fa7-fcf8b4e21c48
Ancestors: Help-Squeak-Project-mt.113

We must not have references to the global "World" anymore.

=============== Diff against Help-Squeak-Project-mt.113 ===============

Item was changed:
  ----- Method: SqueakReleaseNotes class>>exampleDebuggerRunToHereBlock (in category 'examples - v61') -----
  exampleDebuggerRunToHereBlock
  
  	Processor debugWithTitle: 'Debugger' full: true.
  	self inform: 'Do this: Select ''borderColor:'', right-click, and press ''run to here''!!'.
+ 	self currentWorld allMorphs
- 	World allMorphs
  		detect: [:m | m knownName = #codePane]
  		ifFound: [:m | m borderColor: Color red; borderWidth: 5 px].!

Item was changed:
  ----- Method: SqueakReleaseNotes class>>exampleSearchBarPrintIt (in category 'examples - v61') -----
  exampleSearchBarPrintIt
  
  	| t |
+ 	t := self currentWorld
+ 		findDeepSubmorphThat: [:m | m model isKindOf: SearchBar]
+ 		ifAbsent: [^SearchBar].
- 	t := World findDeepSubmorphThat: [:m | m model isKindOf: SearchBar] ifAbsent: [^SearchBar].
  	self currentHand newKeyboardFocus: t.
  	t setText: '#[1 2 3]'; printIt.
  	^ t!

Squeak-dev mailing list -- [email protected]
To unsubscribe send an email to [email protected]