[squeak-dev] The Trunk: CommandLine-mt.6.mcz

commits at source.squeak.org commits at source.squeak.org
Mon May 9 11:48:35 UTC 2016


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

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

Name: CommandLine-mt.6
Author: mt
Time: 9 May 2016, 1:48:28.770729 pm
UUID: d49df7d5-6cc8-6a41-87da-2d7e4efe1a23
Ancestors: CommandLine-mt.5

Update according to the projects refactoring in System-mt.827

=============== Diff against CommandLine-mt.5 ===============

Item was removed:
- ----- Method: DummyUIManager>>newDisplayDepthNoRestore: (in category 'display') -----
- newDisplayDepthNoRestore: pixelSize
- 	"Change depths.  Check if there is enough space!!  , di"
- 	| area need |
- 	pixelSize = Display depth ifTrue: [^ self  "no change"].
- 	pixelSize abs < Display depth ifFalse:
- 		["Make sure there is enough space"
- 		area := Display boundingBox area. "pixels"
- 
- 		need := (area * (pixelSize abs - Display depth) // 8)  "new bytes needed"
- 				+ Smalltalk lowSpaceThreshold.
- 		(Smalltalk garbageCollectMost <= need
- 			and: [Smalltalk garbageCollect <= need])
- 			ifTrue: [self error: 'Insufficient free space']].
- 	Display setExtent: Display extent depth: pixelSize.
- 
- 	DisplayScreen startUp!

Item was removed:
- ----- Method: DummyUIManager>>restoreDisplay (in category 'display') -----
- restoreDisplay!

Item was removed:
- ----- Method: DummyUIManager>>restoreDisplayAfter: (in category 'display') -----
- restoreDisplayAfter: aBlock
- 	aBlock value.
- 	Sensor waitButton.!



More information about the Squeak-dev mailing list