#BUGFIX by cg
authorClaus Gittinger <cg@exept.de>
Thu, 01 Feb 2018 23:56:23 +0100
changeset 6285 d0f22c51c704
parent 6284 c311722a36f6
child 6286 05d5d5f8bc54
#BUGFIX by cg class: SelectionInListView changed: #helpTextForLine: (send #asString instead of #string) oops - still!
SelectionInListView.st
--- a/SelectionInListView.st	Thu Feb 01 22:49:48 2018 +0100
+++ b/SelectionInListView.st	Thu Feb 01 23:56:23 2018 +0100
@@ -2851,7 +2851,7 @@
     
     len := self widthOfLine:lineNr.
     len > width ifTrue:[
-        ^ (self listAt:lineNr) string copy
+        ^ (self listAt:lineNr) asString copy
             replaceAllForWhich:#isSeparator with:(Character space)
             "/    collect:[:ch | ch isSeparator ifTrue:[$ ] ifFalse:[ch]]  
     ].