Changes between Version 49 and Version 50 of squeak_faq


Ignore:
Timestamp:
11/16/2016 11:00:48 AM (7 years ago)
Author:
patrick.rein
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • squeak_faq

    v49 v50  
    176176{{{
    177177TextMorph new
    178 contents: (Text string: 'very important text' attribute: TextEmphasis italic);
    179 beAllFont: (StrikeFont familyName: #BitstreamVeraSans pointSize: 120);
    180 openInWorld.
     178    contents: (Text string: 'very important text' attribute: TextEmphasis italic);
     179    beAllFont: (StrikeFont familyName: #BitstreamVeraSans pointSize: 120);
     180    openInWorld.
    181181}}}
    182182
     
    356356{{{
    357357| aPath |
    358 aPath := aFolderName , FileDirectory slash , anImageName, '.jpg'
     358aPath := aFolderName , FileDirectory slash , anImageName, '.jpg'.
    359359ImageMorph new
    360 image: (Form fromFileNamed: aPath);
    361 openInHand
     360    image: (Form fromFileNamed: aPath);
     361    openInHand
    362362}}}
    363363