# HG changeset patch # User Claus Gittinger # Date 1552508686 -3600 # Node ID e64b91a4aeb1ec4758000248f0a8146f001ff75b # Parent f7d7084c61cc744b1b6b20ed018cc5527a438c5c #REFACTORING by cg class: VersionDiffBrowser changed: #updateLabels diff -r f7d7084c61cc -r e64b91a4aeb1 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