# HG changeset patch # User Claus Gittinger # Date 1486243140 -3600 # Node ID a146a640792ce513b8eb0b5c94bf5fb49e7ae802 # Parent 90c4fcd20bd449a2a0bcf1b672edf74c990a9e42 #REFACTORING by cg class: DataSetLabel changed: #resolveLabelFromDescription:withBuilder: no explicit class check on LabelAndIcon; use isLabelAndIcon diff -r 90c4fcd20bd4 -r a146a640792c DataSetLabel.st --- a/DataSetLabel.st Sat Feb 04 22:18:40 2017 +0100 +++ b/DataSetLabel.st Sat Feb 04 22:19:00 2017 +0100 @@ -499,7 +499,7 @@ ]. ]. ] ifFalse:[ - (rawLabel isKindOf:LabelAndIcon) ifTrue:[ + (rawLabel isLabelAndIcon) ifTrue:[ rawLabel := rawLabel copy string:(resources string:rawLabel string). ]. @@ -528,6 +528,8 @@ lbl size > 1 ifTrue:[^ lbl ]. ]. ^ rawLabel + + "Modified: / 04-02-2017 / 22:10:42 / cg" ! ! !DataSetLabel methodsFor:'queries'!