The Trunk: Graphics-tpr.391.mcz

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

The Trunk: Graphics-tpr.391.mcz

commits-2
tim Rowledge uploaded a new version of Graphics to project The Trunk:
http://source.squeak.org/trunk/Graphics-tpr.391.mcz

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

Name: Graphics-tpr.391
Author: tpr
Time: 27 December 2017, 3:16:27.756643 pm
UUID: 0154dd33-d625-485c-8afa-502ffb8ce24b
Ancestors: Graphics-mt.390

Cleaner filename extension listing for Form

=============== Diff against Graphics-mt.390 ===============

Item was added:
+ ----- Method: Form class>>allTypicalFileExtensions (in category 'file list services') -----
+ allTypicalFileExtensions
+
+ ^ImageReadWriter allTypicalFileExtensions add: 'form'; yourself!

Item was changed:
  ----- Method: Form class>>fileReaderServicesForFile:suffix: (in category 'file list services') -----
  fileReaderServicesForFile: fullName suffix: suffix
 
+ ^(self  allTypicalFileExtensions
- ^((ImageReadWriter allTypicalFileExtensions add: '*'; add: 'form'; yourself)
  includes: suffix)
  ifTrue: [ self services ]
  ifFalse: [#()]
  !