diff options
author | Joachim Lingner <jl@openoffice.org> | 2000-11-21 14:27:44 +0000 |
---|---|---|
committer | Joachim Lingner <jl@openoffice.org> | 2000-11-21 14:27:44 +0000 |
commit | b3f5459f035143a864ccce4d391040a9abbc0d60 (patch) | |
tree | cac11832d596f6bc89ff342c2eeaac3efde1e5f2 | |
parent | d6d7c6db20c6ee3960946ea19f8ffe56ff3d5b79 (diff) |
RTL_STR_MAXVALUEOFFLOAT and RTL_STR_MAX_VALUEOFDOUBLE now have the same values as their RTL_USTR_MAXVALUEOFxxx constants
-rw-r--r-- | sal/inc/rtl/string.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sal/inc/rtl/string.h b/sal/inc/rtl/string.h index 24343c908165..688ff74e5620 100644 --- a/sal/inc/rtl/string.h +++ b/sal/inc/rtl/string.h @@ -2,9 +2,9 @@ * * $RCSfile: string.h,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 15:17:14 $ + * last change: $Author: jl $ $Date: 2000-11-21 15:27:44 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -332,7 +332,7 @@ sal_Int32 SAL_CALL rtl_str_valueOfInt64(sal_Char * str, sal_Int64 l, sal_Int16 r * the <code>float</code> argument. * @see java.lang.Float#toString(float) */ -#define RTL_STR_MAX_VALUEOFFLOAT 1 /*???*/ +#define RTL_STR_MAX_VALUEOFFLOAT 15 sal_Int32 SAL_CALL rtl_str_valueOfFloat(sal_Char * str, float f); /** @@ -346,7 +346,7 @@ sal_Int32 SAL_CALL rtl_str_valueOfFloat(sal_Char * str, float f); * the <code>double</code> argument. * @see java.lang.Double#toString(double) */ -#define RTL_STR_MAX_VALUEOFDOUBLE 1/*???*/ +#define RTL_STR_MAX_VALUEOFDOUBLE 25 sal_Int32 SAL_CALL rtl_str_valueOfDouble(sal_Char * str, double d); |