[squeak-dev] The Trunk: EToys-tfel.263.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Sep 29 14:08:17 UTC 2016


Tim Felgentreff uploaded a new version of EToys to project The Trunk:
http://source.squeak.org/trunk/EToys-tfel.263.mcz

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

Name: EToys-tfel.263
Author: tfel
Time: 29 September 2016, 4:07:37.715594 pm
UUID: 951255bb-c387-4df7-8044-181017752b52
Ancestors: EToys-tfel.262

- remove two obsolete methods
- forward sendLog to the Debugger

=============== Diff against EToys-tfel.262 ===============

Item was removed:
- ----- Method: FillInTheBlankMorph>>createQueryTextMorph: (in category '*Etoys-Squeakland-initialization') -----
- createQueryTextMorph: queryString 
- 	"create the queryTextMorph"
- 	| r |
- 	r := TextMorph new newContents: queryString.
- 	r setNameTo: 'query' translated.
- 	r font: Preferences standardMenuFont.
- 	r releaseParagraphReally.
- 	r fillStyle: ScriptingSystem baseColor.
- 	r centered.
- 	r lock.
- 	r hResizing: #spaceFill.
- 	^ r!

Item was removed:
- ----- Method: FillInTheBlankMorph>>createTextPaneAcceptBoolean: (in category '*Etoys-Squeakland-initialization') -----
- createTextPaneAcceptBoolean: acceptBoolean
- 	"create the textPane"
- 	| r |
- 	r := PluggableTextMorph
- 				on: self
- 				text: #response
- 				accept: #response:
- 				readSelection: #selectionInterval
- 				menu: #codePaneMenu:shifted:.
- 	r hResizing: #spaceFill;
- 		 vResizing: #spaceFill.
- 	r borderWidth: 1.
- 	r borderColor: Preferences menuBorderColor.
- 	r hasUnacceptedEdits: true.
- 	r acceptOnCR: acceptBoolean.
- 	r setNameTo: 'textPane'.
- 	r font: Preferences standardMenuFont.
- 	r hideScrollBarsIndefinitely.
- 	r selectionInterval: nil.
- 	r selectAll.
- 	^ r!

Item was added:
+ ----- Method: PreDebugWindow>>sendLog (in category 'as yet unclassified') -----
+ sendLog
+ 	model storeLog; sendLog.!



More information about the Squeak-dev mailing list