[squeak-dev] The Trunk: Morphic-mt.2013.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Jun 29 13:21:55 UTC 2022


Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mt.2013.mcz

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

Name: Morphic-mt.2013
Author: mt
Time: 29 June 2022, 3:21:49.745602 pm
UUID: 0fdae78b-624d-5948-b553-eae8530b44e8
Ancestors: Morphic-mt.2012

Fixes styling of methods in MorphicProject as reported by Jaromir (jar). Those extra pool dict and class vars where committed by accident via Morphic-mt.1892. They are not used.

This might still be a Shout bug. See http://lists.squeakfoundation.org/pipermail/squeak-dev/2022-June/221363.html

=============== Diff against Morphic-mt.2012 ===============

Item was changed:
  Project subclass: #MorphicProject
  	instanceVariableNames: 'uiProcess'
+ 	classVariableNames: 'DefaultFill UseCompactButtons UseCompactLists UseCompactTextFields'
+ 	poolDictionaries: ''
- 	classVariableNames: 'DefaultFill HarmonizeFonts ShowResizeGrips UseCompactButtons UseCompactLists UseCompactTextFields'
- 	poolDictionaries: 'AbstractResizerMorph'
  	category: 'Morphic-Support'!
  
  !MorphicProject commentStamp: 'dtl 7/13/2013 15:40' prior: 0!
  An MorphicProject is a project with a Morphic user interface. Its world is a PasteUpMorph, and its UI manager is a MorphicUIManager. It uses a MorphicToolBuilder to create the views for various tools. It has a single uiProcess for its world, and Morph updates and user interaction occur in the context of that UI process.
  !



More information about the Squeak-dev mailing list