[squeak-dev] The Trunk: Graphics-mt.523.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Jun 16 13:56:45 UTC 2022


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

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

Name: Graphics-mt.523
Author: mt
Time: 16 June 2022, 3:56:39.245458 pm
UUID: 467eef19-2e83-794e-a97f-24651e516088
Ancestors: Graphics-mt.522

Removes undeclared instVar ref.

=============== Diff against Graphics-mt.522 ===============

Item was changed:
  ----- Method: AnimatedGIFReadWriter>>allImages (in category 'accessing') -----
  allImages
  	| body colorTable |
  	localColorTable := nil.
  	forms := OrderedCollection new.
  	delays := OrderedCollection new.
  	comments := OrderedCollection new.
  	self readHeader.
  	[(body := self readBody) == nil]
  		whileFalse: [colorTable := localColorTable
  						ifNil: [colorPalette].
  			transparentIndex
  				ifNotNil: [transparentIndex + 1 > colorTable size
  						ifTrue: [colorTable := colorTable forceTo: transparentIndex + 1 paddingWith: Color white].
  					colorTable at: transparentIndex + 1 put: Color transparent].
  			body colors: colorTable.
+ 			forms add: body].
- 			forms add: body.
- 			delays add: delay].
  	^ forms!



More information about the Squeak-dev mailing list