# HG changeset patch # User Claus Gittinger # Date 1481287488 -3600 # Node ID a44c8b27bbad795db97f4bb4c4351c635066069f # Parent daa54392bf9081637d20a4dee5da7e80e30c5967 #REFACTORING by cg class: EditTextViewCompletionSupport changed: #startCompletionProcess use isDebugView instead of class == DebugView or isKindOf:DebugView (to allow replacing the debugger) diff -r daa54392bf90 -r a44c8b27bbad 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. ].