#BUGFIX by cg
authorClaus Gittinger <cg@exept.de>
Wed, 29 Aug 2018 09:59:20 +0200
changeset 18364 02027c0b4be6
parent 18363 89b39d823747
child 18365 7feb95497174
#BUGFIX by cg class: Tools::BackgroundSourceProcessingService changed: #update:with:from: (send #asStringWithoutEmphasis instead of #string)
Tools__BackgroundSourceProcessingService.st
--- a/Tools__BackgroundSourceProcessingService.st	Wed Aug 29 09:11:29 2018 +0200
+++ b/Tools__BackgroundSourceProcessingService.st	Wed Aug 29 09:59:20 2018 +0200
@@ -105,7 +105,7 @@
     textView notNil ifTrue:[
         "/sender == textView modifiedChannel ifTrue:[^self codeChanged: false].
         sender == textView model ifTrue:[
-            (sender value ? '') string ~= textView contentsAsString ifTrue:[
+            (sender value ? '') asStringWithoutEmphasis ~= textView contentsAsString ifTrue:[
                 self modelChanged.
                 ^self.
             ].
@@ -140,7 +140,7 @@
     "Modified: / 13-09-2011 / 12:00:29 / cg"
     "Modified: / 22-02-2012 / 15:02:16 / jv"
     "Modified: / 15-04-2013 / 23:00:17 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 28-08-2018 / 18:29:45 / Claus Gittinger"
+    "Modified: / 29-08-2018 / 09:25:13 / Claus Gittinger"
 ! !
 
 !BackgroundSourceProcessingService methodsFor:'event handling'!