The Trunk: ToolBuilder-Kernel-mt.96.mcz

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

The Trunk: ToolBuilder-Kernel-mt.96.mcz

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

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

Name: ToolBuilder-Kernel-mt.96
Author: mt
Time: 4 May 2016, 1:36:48.21799 pm
UUID: 9c962b8d-8449-834d-9f5c-82e7b851768a
Ancestors: ToolBuilder-Kernel-mt.95

Add a general hook to retrieve bounds for a window.

=============== Diff against ToolBuilder-Kernel-mt.95 ===============

Item was added:
+ ----- Method: ToolBuilder class>>getBoundsForWindow: (in category 'services') -----
+ getBoundsForWindow: window
+ "Return the bounds for the given window."
+
+ self subclassResponsibility.!

Item was added:
+ ----- Method: ToolBuilder class>>setBoundsForWindow:to: (in category 'services') -----
+ setBoundsForWindow: window to: rectangle
+ "Set the bounds for the given window."
+
+ self subclassResponsibility.!