Marcel Taeumel uploaded a new version of EToys to project The Trunk:
http://source.squeak.org/trunk/EToys-mt.356.mcz==================== Summary ====================
Name: EToys-mt.356
Author: mt
Time: 29 September 2019, 4:38:53.143032 pm
UUID: bfc8f22c-18f7-9146-8d4a-9829f8a4f36a
Ancestors: EToys-mt.355
Some minor fixes in (maybe dead) Etoys code.
=============== Diff against EToys-mt.355 ===============
Item was changed:
----- Method: CurrentProjectRefactoring class>>currentInterruptName: (in category 'revectoring to current') -----
currentInterruptName: aString
"
CurrentProjectRefactoring currentInterruptName:
"
+ ^ self xxxCurrent interruptName: aString!
- ^Project interruptName: aString!
Item was changed:
----- Method: CurrentProjectRefactoring class>>currentInterruptName:preemptedProcess: (in category 'revectoring to current') -----
currentInterruptName: aString preemptedProcess: theInterruptedProcess
+ ^ self xxxCurrent interruptName: aString preemptedProcess: theInterruptedProcess!
- ^ Project interruptName: aString preemptedProcess: theInterruptedProcess!
Item was changed:
----- Method: CurrentProjectRefactoring class>>currentSpawnNewProcessAndTerminateOld: (in category 'revectoring to current') -----
currentSpawnNewProcessAndTerminateOld: aBoolean
"
CurrentProjectRefactoring currentSpawnNewProcessAndTerminateOld:
"
+ ^self xxxCurrent spawnNewProcessAndTerminateOld: aBoolean
- ^Project spawnNewProcessAndTerminateOld: aBoolean
!
Item was changed:
----- Method: CurrentProjectRefactoring class>>newProcessIfUI: (in category 'miscellaneous') -----
newProcessIfUI: aDeadOrDyingProcess
"
CurrentProjectRefactoring newProcessIfUI:
used ONLY for Morphic
"
+ ^ self xxxCurrent spawnNewProcessIfThisIsUI: aDeadOrDyingProcess!
- ^Project spawnNewProcessIfThisIsUI: aDeadOrDyingProcess!