UIPainterView.st
changeset 464 dd67c1e99fed
parent 458 daa7b41dd2e3
child 501 16d87a6511d4
equal deleted inserted replaced
463:947f89198464 464:dd67c1e99fed
   825         ]
   825         ]
   826     ].
   826     ].
   827     spec := treeView generateFullSpecForComponents:spec.
   827     spec := treeView generateFullSpecForComponents:spec.
   828     str  := WriteStream on:String new.
   828     str  := WriteStream on:String new.
   829     UISpecification prettyPrintSpecArray:spec on:str indent:5.
   829     UISpecification prettyPrintSpecArray:spec on:str indent:5.
   830     specCode := self generateChunkFor:(str contents).
   830     specCode := str contents.
   831 
   831 
   832     (specCode includes:$!!) ifTrue:[
   832     (specCode includes:$!!) ifTrue:[
   833         "/ oops - must be chunk format ...
   833         "/ oops - must be chunk format ...
   834         str  := WriteStream on:String new.
   834         str  := WriteStream on:String new.
   835         str nextPutAllAsChunk:specCode.
   835         str nextPutAllAsChunk:specCode.