FFI: FFI-Tools-mt.19.mcz

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

FFI: FFI-Tools-mt.19.mcz

commits-2
Marcel Taeumel uploaded a new version of FFI-Tools to project FFI:
http://source.squeak.org/FFI/FFI-Tools-mt.19.mcz

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

Name: FFI-Tools-mt.19
Author: mt
Time: 20 June 2020, 1:17:59.600743 pm
UUID: 15c08121-a21a-134a-9327-6243c38b2552
Ancestors: FFI-Tools-mt.18

Complements FFI-Kernel-mt.117

=============== Diff against FFI-Tools-mt.18 ===============

Item was added:
+ ----- Method: ExternalStructureType>>explorerContents (in category '*FFI-Tools') -----
+ explorerContents
+
+ | basicExplorerFields originalTypeField |
+ basicExplorerFields := super explorerContents.
+ self isTypeAlias ifFalse: [^ basicExplorerFields].
+ originalTypeField := ObjectExplorerWrapper
+ with: self originalType
+ name: '_originalType'
+ model: self.
+ ^ {originalTypeField}, basicExplorerFields!

Item was added:
+ ----- Method: ExternalStructureType>>iconOrThumbnailOfSize: (in category '*FFI-Tools') -----
+ iconOrThumbnailOfSize: aPoint
+ "Override the tool icon in object explorers."
+
+ ^ self isEmpty
+ ifTrue: [ToolIcons iconNamed: #externalTypeEmpty]!

Item was removed:
- ----- Method: ExternalType>>explorerContents (in category '*FFI-Tools') -----
- explorerContents
-
- | basicExplorerFields originalTypeField |
- basicExplorerFields := super explorerContents.
- self isTypeAlias ifFalse: [^ basicExplorerFields].
- originalTypeField := ObjectExplorerWrapper
- with: self originalType
- name: '_originalType'
- model: self.
- ^ {originalTypeField}, basicExplorerFields!

Item was removed:
- ----- Method: ExternalType>>iconOrThumbnailOfSize: (in category '*FFI-Tools') -----
- iconOrThumbnailOfSize: aPoint
- "Override the tool icon in object explorers."
-
- ^ self isEmptyStructureType
- ifTrue: [ToolIcons iconNamed: #externalTypeEmpty]!