The Trunk: EToys-tfel.263.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: EToys-tfel.263.mcz

commits-2
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.!