[BUG] TextFontReference = method typo

Mark A. Schwenk mas at wellthot.com
Fri May 7 12:50:10 UTC 1999


I believe there is a typo in the following method:

'From Squeak 2.4b of April 23, 1999 on 7 May 1999 at 6:43:36 am'!
!TextFontReference methodsFor: 'comparing' stamp: 'di 10/31/97 11:15'!
= other 
	^ (other class == self class) 
		and: [font == font]! !


and that the corrected method should look like this:

'From Squeak 2.4b of April 23, 1999 on 7 May 1999 at 6:20:48 am'!
!TextFontReference methodsFor: 'comparing' stamp: 'mas 5/7/1999 06:20'!
= other 
	^ (other class == self class) 
		and: [other font == font]! !


-Mark Schwenk
 WellThot Inc.





More information about the Squeak-dev mailing list