The Trunk: System-ct.1086.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: System-ct.1086.mcz

commits-2
Marcel Taeumel uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-ct.1086.mcz

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

Name: System-ct.1086
Author: ct
Time: 15 August 2019, 5:44:16.577735 pm
UUID: f5823ddc-52ec-1646-9c42-c7976406b360
Ancestors: System-mt.1085

Fix a typo

=============== Diff against System-mt.1085 ===============

Item was changed:
  ----- Method: Project>>tellAFriend: (in category 'SuperSwiki') -----
  tellAFriend: emailAddressOrNil
  "
+ Project current tellAFriend
- Project current tellAFrien
  "
  | urlForLoading |
  (urlForLoading := self urlForLoading)
  ifNil: [urlForLoading := self url
  "fallback for dtp servers"].
  urlForLoading isEmptyOrNil
  ifTrue: [^ self inform: 'Since this project has not been saved yet,
  I cannot tell someone where it is.' translated].
  FancyMailComposition new
  celeste: nil
  to: (emailAddressOrNil
  ifNil: ['RECIPIENT.GOESHERE'])
  subject: 'New/Updated Squeak project'
  initialText: 'This is a link to the Squeak project ' , self name , ': ' , String crlf
  theLinkToInclude: urlForLoading;
  open!