#REFACTORING by cg
authorClaus Gittinger <cg@exept.de>
Wed, 13 Mar 2019 21:24:46 +0100
changeset 18676 e64b91a4aeb1
parent 18675 f7d7084c61cc
child 18677 60d444e139a5
#REFACTORING by cg class: VersionDiffBrowser changed: #updateLabels
VersionDiffBrowser.st
--- a/VersionDiffBrowser.st	Wed Mar 13 21:23:40 2019 +0100
+++ b/VersionDiffBrowser.st	Wed Mar 13 21:24:46 2019 +0100
@@ -2414,19 +2414,20 @@
         self onlyInALabelHolder value:('Only in ' , theVersionA).
         (self componentAt:#OnlyInALabel)
             foregroundColor:Color white;
-            backgroundColor:Color green darkened.
+            backgroundColor:Color darkGreen.
     ].
     (theVersionB :=self versionB) notNil ifTrue:[
         self diffTextLabelB value:(makeLabel value:theVersionB).
         self onlyInBLabelHolder value:('Only in ' , theVersionB).
         (self componentAt:#OnlyInBLabel)
             foregroundColor:Color white;
-            backgroundColor:Color red darkened.
+            backgroundColor:Color darkRed.
     ].
 
     self changedLabelHolder value:('Different').
 
     "Modified: / 13-10-2006 / 01:07:08 / cg"
+    "Modified: / 13-03-2019 / 21:19:13 / Claus Gittinger"
 !
 
 updateLists