Check for AbortOperationRequest in suspendedContext.
authorStefan Vogel <sv@exept.de>
Tue, 06 Apr 2004 18:38:46 +0200
changeset 5821 a5ef70570c6c
parent 5820 76f71c9ac1cd
child 5822 812c1a771ef0
Check for AbortOperationRequest in suspendedContext. Need more changes to not search in thisContext.
DebugView.st
--- a/DebugView.st	Mon Apr 05 11:56:01 2004 +0200
+++ b/DebugView.st	Tue Apr 06 18:38:46 2004 +0200
@@ -1088,7 +1088,7 @@
     m notNil ifTrue:[
         self updateMenuItems.
 
-        (inspecting or:[AbortOperationRequest isHandled]) ifTrue:[
+        (inspecting or:[AbortOperationRequest isHandledIn:aContext]) ifTrue:[
             abortButton enable.
             m enable:#doAbort.
         ] ifFalse:[
@@ -5829,7 +5829,7 @@
 !DebugView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/DebugView.st,v 1.363 2004-03-26 11:49:38 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/DebugView.st,v 1.364 2004-04-06 16:38:46 stefan Exp $'
 ! !
 
 DebugView initialize!