TextView.st
changeset 5262 1f4b4b257010
parent 5249 cc785134a690
child 5276 d7ca8c94d5b7
--- a/TextView.st	Thu Feb 19 18:40:39 2015 +0100
+++ b/TextView.st	Sat Feb 21 01:34:09 2015 +0100
@@ -2296,12 +2296,12 @@
         selectedVariable notNil ifTrue:[
             bindings
                 at:#stringWithVariableUnderCursorHolder
-                put:('Variable ("%1")' bindWith:selectedVariable value).
+                put:(resources string:'Variable ("%1")' with:selectedVariable value).
             searchVariableHolder value:true.
         ] ifFalse:[
             bindings
                 at:#stringWithVariableUnderCursorHolder
-                put:('Variable (none selected)').
+                put:(resources string:'Variable (none selected)').
         ].
     ].
     bindings at:#searchVariable put:searchVariableHolder.
@@ -4945,11 +4945,11 @@
 !TextView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/TextView.st,v 1.388 2015-02-04 23:14:56 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/TextView.st,v 1.389 2015-02-21 00:34:09 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libwidg/TextView.st,v 1.388 2015-02-04 23:14:56 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/TextView.st,v 1.389 2015-02-21 00:34:09 cg Exp $'
 ! !