[squeak-dev] The Trunk: Tools-dtl.128.mcz

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

[squeak-dev] The Trunk: Tools-dtl.128.mcz

commits-2
David T. Lewis uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-dtl.128.mcz

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

Name: Tools-dtl.128
Author: dtl
Time: 23 September 2009, 8:50:19 am
UUID: a9d27ac7-8c93-4ead-a99c-08f2588ddf86
Ancestors: Tools-ar.127

Make DeferredActionStandardSystemController an empty stub, retained for the time being to provide backward compatibility for external packages. Implementation has been moved to Controller. Reference Mantis 1578.


=============== Diff against Tools-ar.127 ===============

Item was changed:
  StandardSystemController subclass: #DeferredActionStandardSystemController
+ instanceVariableNames: ''
- instanceVariableNames: 'queue'
  classVariableNames: ''
  poolDictionaries: ''
  category: 'Tools-Process Browser'!
 
+ !DeferredActionStandardSystemController commentStamp: 'dtl 9/20/2009 18:39' prior: 0!
+ Deprecated (Sept 2009) - The DeferredActionStandardSystemController has been merged into Controller. This class remains as a stub to guard ensure that any external packages that depend on it remain functional.
+
- !DeferredActionStandardSystemController commentStamp: '<historical>' prior: 0!
  This is a StandardSystemController that can queue up objects to be evaluated before its control loop.!

Item was removed:
- ----- Method: DeferredActionStandardSystemController>>controlActivity (in category 'as yet unclassified') -----
- controlActivity
- [queue isEmpty]
- whileFalse: [queue next value].
- ^super controlActivity!

Item was removed:
- ----- Method: DeferredActionStandardSystemController>>initialize (in category 'as yet unclassified') -----
- initialize
- super initialize.
- queue := SharedQueue new.!

Item was removed:
- ----- Method: DeferredActionStandardSystemController>>addDeferredUIMessage: (in category 'as yet unclassified') -----
- addDeferredUIMessage: valuableObject
- queue nextPut: valuableObject!