#OTHER by stefan
authorStefan Vogel <sv@exept.de>
Wed, 20 Jul 2016 11:35:35 +0200
changeset 5165 d38afb4825a5
parent 5164 ea62d7ad1bf9
child 5166 a9334ae0d171
#OTHER by stefan use #blackColor and #whiteColor form device instead of (Color black) and (Color white)
CharacterSetView.st
--- a/CharacterSetView.st	Wed Jul 20 11:35:19 2016 +0200
+++ b/CharacterSetView.st	Wed Jul 20 11:35:35 2016 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2004 by eXept Software AG
               All Rights Reserved
@@ -458,9 +460,9 @@
             codePoint == selectedCodePoint ifTrue:[
                 self paint:(Color red).
                 self fillRectangle:((x0+1)@(y0+1) corner:(x1)@(y1)).
-                self paint:(Color white).
+                self paint:(self whiteColor).
                 self displayString:s x:x y:y.
-                self paint:(Color black).
+                self paint:(self blackColor).
             ] ifFalse:[
                 self displayString:s x:x y:y.
             ].