The Inbox: Help-Squeak-Project-ct.111.mcz

[email protected] Tue, 28 Jul 2026 20:35:25 0000
Newsgroups gmane.comp.lang.smalltalk.squeak.general
Message-ID <[email protected]>
A new version of Help-Squeak-Project was added to project The Inbox:
http://source.squeak.org/inbox/Help-Squeak-Project-ct.111.mcz

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

Name: Help-Squeak-Project-ct.111
Author: ct
Time: 28 July 2026, 10:35:25.212297 pm
UUID: 7cbb2fea-b459-4608-b4e4-b0d475fc46c4
Ancestors: Help-Squeak-Project-mt.110

Fixes #testWorldVariableObsoletion for two examples in the new release notes. Oop, sorry for not noting earlier.
   --> trunk? :-)

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

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''!!'.
+ 	Project current world 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 := Project current world 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]