Skip to content

Commit

Permalink
Fix deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
guillep committed May 30, 2024
1 parent 39f3835 commit 46cb4cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Kernel/Process.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ Process >> isBlocked [
^false
]

{ #category : 'testing'. }
{ #category : 'testing' }
Process >> isSuspended [
"A #suspended process will not run until sent #resume. New processes
start in this state (though the #fork family sends #resume internally),
Expand Down
2 changes: 1 addition & 1 deletion src/Polymorph-Widgets/MorphicUIManager.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ MorphicUIManager >> showWaitCursorWhile: aBlock [
MorphicUIManager >> spawnNewProcess [

UIProcess := [
MorphicRenderLoop new doOneCycleWhile: [ self uiProcess isActiveProcess ]
MorphicRenderLoop new doOneCycleWhile: [ self uiProcess isActive ]
] newProcess priority: Processor userSchedulingPriority.
UIProcess name: 'Morphic UI Process'.
UIProcess resume
Expand Down

0 comments on commit 46cb4cd

Please sign in to comment.