[squeak-dev] The Trunk: Nebraska-dtl.34.mcz

commits at source.squeak.org commits at source.squeak.org
Sun May 15 23:09:36 UTC 2011


David T. Lewis uploaded a new version of Nebraska to project The Trunk:
http://source.squeak.org/trunk/Nebraska-dtl.34.mcz

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

Name: Nebraska-dtl.34
Author: dtl
Time: 15 May 2011, 7:09:19.432 pm
UUID: 08000000-1508-e80a-1508-e80a14000000
Ancestors: Nebraska-nice.33

Reference Mantis 7623: Subscript out of bounds as client connects to server.
Add missing #asString in StrikeFont>>encodedForRemoveCanvas

=============== Diff against Nebraska-nice.33 ===============

Item was changed:
  ----- Method: StrikeFont>>encodedForRemoteCanvas (in category '*nebraska-file in/out') -----
  encodedForRemoteCanvas
  
  	| stream |
  	stream := RWBinaryOrTextStream on: ''.
  	stream nextPutAll: self familyName.
  	stream nextPut: Character space.
  	stream nextPutAll: self name.
  	stream nextPut: Character space.
+ 	stream nextPutAll: self height asString.
- 	stream nextPutAll: self height.
  	stream nextPut: Character space.
  	stream nextPutAll: self emphasis asString.
  	^ stream contents asString.
  !




More information about the Squeak-dev mailing list