class: CharacterArray
authorClaus Gittinger <cg@exept.de>
Tue, 18 Nov 2014 15:23:59 +0100
changeset 17065 9ed49d70737a
parent 17064 aaddbee29547
child 17066 983f61f73c8f
class: CharacterArray changed: #asText (send #string: instead of #fromString:)
CharacterArray.st
--- a/CharacterArray.st	Tue Nov 18 14:58:28 2014 +0100
+++ b/CharacterArray.st	Tue Nov 18 15:23:59 2014 +0100
@@ -3285,7 +3285,7 @@
 
     "this test allows for small non-gui apps to be built without libbasic2 (where Text is)"
     Text isNil ifTrue:[^ self].
-    ^ Text fromString:self
+    ^ Text string:self
 
     "Created: 12.5.1996 / 10:41:14 / cg"
 !
@@ -7170,11 +7170,11 @@
 !CharacterArray class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.551 2014-11-14 12:27:36 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.552 2014-11-18 14:23:59 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.551 2014-11-14 12:27:36 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.552 2014-11-18 14:23:59 cg Exp $'
 ! !