#REFACTORING by cg
authorClaus Gittinger <cg@exept.de>
Sat, 04 Feb 2017 22:19:00 +0100
changeset 5445 a146a640792c
parent 5444 90c4fcd20bd4
child 5446 6371c5e1a429
#REFACTORING by cg class: DataSetLabel changed: #resolveLabelFromDescription:withBuilder: no explicit class check on LabelAndIcon; use isLabelAndIcon
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'!