Tools__ChangeSetDiffList.st
branchjv
changeset 15950 23be8cf85415
parent 15566 184cea584be5
--- a/Tools__ChangeSetDiffList.st	Fri Nov 13 06:40:27 2015 +0100
+++ b/Tools__ChangeSetDiffList.st	Mon Nov 16 13:33:19 2015 +0000
@@ -455,11 +455,11 @@
 
 listEntryLabelFor:diff 
 
-    ^listEntryLabelGenerator 
-        ifNotNil: [listEntryLabelGenerator value: diff]
-        ifNil:[diff name]
+    ^listEntryLabelGenerator isNil 
+           ifTrue:[ diff name ]
+           ifFalse:[ listEntryLabelGenerator value:diff ]
 
-    "Modified: / 24-11-2009 / 10:00:39 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 16-11-2015 / 11:57:39 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 makeDependent
@@ -547,12 +547,12 @@
 
 label
 
-    ^application 
-        ifNotNil:[application listEntryLabelFor: model]
-        ifNil:[model displayString]
+    ^application isNil 
+           ifTrue:[ model displayString ]
+           ifFalse:[ application listEntryLabelFor:model ]
 
     "Created: / 24-11-2009 / 18:26:13 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 26-11-2009 / 17:33:25 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 16-11-2015 / 11:55:20 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 model