The Trunk: Graphics-mt.352.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-mt.352.mcz

commits-2
Marcel Taeumel uploaded a new version of Graphics to project The Trunk:
http://source.squeak.org/trunk/Graphics-mt.352.mcz

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

Name: Graphics-mt.352
Author: mt
Time: 13 July 2016, 11:49:58.442252 am
UUID: 0095e815-99ca-bf48-ab99-3770d376d079
Ancestors: Graphics-mt.351

Show the current ressource imports after adding another one via file service.

=============== Diff against Graphics-mt.351 ===============

Item was added:
+ ----- Method: Form class>>importImageAndShowImports: (in category 'file list services') -----
+ importImageAndShowImports: fullName
+
+ self importImage: fullName.
+ Imports default explore.!

Item was changed:
  ----- Method: Form class>>serviceImageImports (in category 'file list services') -----
  serviceImageImports
  "Answer a service for reading a graphic into ImageImports"
 
  ^ SimpleServiceEntry
  provider: self
  label: 'read graphic into ImageImports'
+ selector: #importImageAndShowImports:
- selector: #importImage:
  description: 'Load a graphic, placing it in the ImageImports repository.'
  buttonLabel: 'import'!