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

commits at source.squeak.org commits at source.squeak.org
Thu Dec 2 13:53:13 UTC 2021


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

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

Name: Graphics-mt.450
Author: mt
Time: 2 December 2021, 2:53:06.775715 pm
UUID: b4293a0a-6461-ef4b-810f-5f00dd92d7df
Ancestors: Graphics-eem.449

Complements Collections-mt.965

=============== Diff against Graphics-eem.449 ===============

Item was added:
+ ----- Method: StrikeFont>>closeHtmlOn: (in category 'html') -----
+ closeHtmlOn: aStream 
+ 
+ 	aStream nextPutAll: '</font>'.!

Item was added:
+ ----- Method: StrikeFont>>openHtmlOn: (in category 'html') -----
+ openHtmlOn: aStream 
+ 
+ 	aStream
+ 		nextPutAll: '<font face="';
+ 		nextPutAll: self familyName;
+ 		nextPutAll: '" size="';
+ 		nextPutAll: self pointSize asString;
+ 		nextPutAll: '">'.!



More information about the Squeak-dev mailing list