TypeConverter.st
changeset 2737 0c83579be3d3
parent 2623 cadc459b3c53
child 2868 0eb805b3bf00
--- a/TypeConverter.st	Mon Sep 07 20:45:59 2009 +0200
+++ b/TypeConverter.st	Tue Sep 08 23:13:20 2009 +0200
@@ -777,7 +777,11 @@
                         numericValue    
                     ] ifFalse:[
                         formatStringOrNil isNil ifTrue:[    
-                            numericValue printStringRadix:radix
+                            radix = 10 ifTrue:[
+                                numericValue printString
+                            ] ifFalse:[
+                                numericValue printStringRadix:radix
+                            ]
                         ] ifFalse:[
                             numericValue printfPrintString:formatStringOrNil
                         ]
@@ -1757,5 +1761,5 @@
 !TypeConverter class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/TypeConverter.st,v 1.61 2009-04-29 19:58:04 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/TypeConverter.st,v 1.62 2009-09-08 21:13:20 cg Exp $'
 ! !