*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Thu, 20 Feb 2003 16:04:48 +0100
changeset 1148 72eab7e77029
parent 1147 2947f4ee2c24
child 1149 21befc0df148
*** empty log message ***
UnitConverter.st
--- a/UnitConverter.st	Thu Feb 20 10:43:07 2003 +0100
+++ b/UnitConverter.st	Thu Feb 20 16:04:48 2003 +0100
@@ -767,8 +767,8 @@
 
     |unitString n|
 
-    nBytes < (500 * 1024 * 1024) ifTrue:[
-        nBytes < (500 * 1024) ifTrue:[
+    nBytes < (1000 * 1024 * 1024) ifTrue:[
+        nBytes < (1000 * 1024) ifTrue:[
             nBytes < 1024 ifTrue:[
                 n := nBytes.
                 unitString := '   '.
@@ -913,5 +913,5 @@
 !UnitConverter class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/UnitConverter.st,v 1.24 2003-02-12 16:03:30 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/UnitConverter.st,v 1.25 2003-02-20 15:04:48 cg Exp $'
 ! !