DoWhatIMeanSupport.st
changeset 4458 e8590b774ae5
parent 4451 8db9cfa578c0
child 4460 edec40f2e665
--- a/DoWhatIMeanSupport.st	Fri Dec 06 01:57:15 2013 +0100
+++ b/DoWhatIMeanSupport.st	Fri Dec 06 14:20:10 2013 +0100
@@ -1624,7 +1624,6 @@
     ].
 ! !
 
-
 !DoWhatIMeanSupport methodsFor:'code completion-helpers'!
 
 askUserForCompletion:what for:codeView at:position from:allTheBest 
@@ -2924,7 +2923,7 @@
                                 ifTrue:[ otherArgNames addAll:(parseTree arguments collect:[:each | each name])] ].
             addWithFactorBlock value:otherArgNames value:(1.5 * localFactor).
         ].
-        addWithFactorBlock value:(codeView previousReplacements collect:[:p | p value]) value:(1.3 * localFactor).
+        addWithFactorBlock value:(codeView previousReplacements collect:[:p | p value asString]) value:(1.3 * localFactor).
     ] ifFalse:[
         "/ locals in the block/method
         names := OrderedCollection withAll:node allVariablesOnScope.
@@ -4636,10 +4635,10 @@
 !DoWhatIMeanSupport class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/DoWhatIMeanSupport.st,v 1.192 2013-11-27 00:14:43 vrany Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/DoWhatIMeanSupport.st,v 1.193 2013-12-06 13:20:10 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libwidg2/DoWhatIMeanSupport.st,v 1.192 2013-11-27 00:14:43 vrany Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/DoWhatIMeanSupport.st,v 1.193 2013-12-06 13:20:10 cg Exp $'
 ! !