#REFACTORING by cg
authorClaus Gittinger <cg@exept.de>
Fri, 09 Dec 2016 13:44:48 +0100
changeset 5995 a44c8b27bbad
parent 5994 daa54392bf90
child 5996 120d210b278d
#REFACTORING by cg class: EditTextViewCompletionSupport changed: #startCompletionProcess use isDebugView instead of class == DebugView or isKindOf:DebugView (to allow replacing the debugger)
EditTextViewCompletionSupport.st
--- a/EditTextViewCompletionSupport.st	Thu Dec 08 04:52:23 2016 +0000
+++ b/EditTextViewCompletionSupport.st	Fri Dec 09 13:44:48 2016 +0100
@@ -246,7 +246,7 @@
             Error handle:[:ex |
                 Smalltalk isSmalltalkDevelopmentSystem ifTrue:[ ex reject ]
             ] do:[ 
-                (editView topView isKindOf:DebugView) ifTrue:[
+                (editView topView isDebugView) ifTrue:[
                     ControlInterrupt ignoreIn:[
                         self computeCompletions.
                     ].