diff options
author | Andreas Bregas <ab@openoffice.org> | 2002-11-18 07:37:32 +0000 |
---|---|---|
committer | Andreas Bregas <ab@openoffice.org> | 2002-11-18 07:37:32 +0000 |
commit | 7e1536e31eac49a2d72d7aced6150d7b8c6d6d1b (patch) | |
tree | 9507222f5554fe5d82ad65b22862596b9d9c0439 | |
parent | c64a22338e8088af89c91a75f54373fc48242d06 (diff) |
#102653# Changed LBound/UBound types for 32 bit arrays
-rw-r--r-- | basic/source/runtime/stdobj.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/basic/source/runtime/stdobj.cxx b/basic/source/runtime/stdobj.cxx index 6ab7744f8c30..48438a09c59a 100644 --- a/basic/source/runtime/stdobj.cxx +++ b/basic/source/runtime/stdobj.cxx @@ -2,9 +2,9 @@ * * $RCSfile: stdobj.cxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: ab $ $Date: 2002-10-02 15:32:48 $ + * last change: $Author: ab $ $Date: 2002-11-18 08:37:32 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -358,7 +358,7 @@ static Methods aMethods[] = { { "delimiter", SbxSTRING }, { "Kill", SbxNULL, 1 | _FUNCTION, RTLNAME(Kill) }, { "filespec", SbxSTRING }, -{ "LBound", SbxINTEGER, 1 | _FUNCTION, RTLNAME(LBound) }, +{ "LBound", SbxLONG, 1 | _FUNCTION, RTLNAME(LBound) }, { "Variant", SbxVARIANT }, { "LCase", SbxSTRING, 1 | _FUNCTION, RTLNAME(LCase) }, { "string", SbxSTRING }, @@ -562,7 +562,7 @@ static Methods aMethods[] = { { "Var", SbxVARIANT }, { "TypeName", SbxSTRING, 1 | _FUNCTION, RTLNAME(TypeName) }, { "Var", SbxVARIANT }, -{ "UBound", SbxINTEGER, 1 | _FUNCTION, RTLNAME(UBound) }, +{ "UBound", SbxLONG, 1 | _FUNCTION, RTLNAME(UBound) }, { "Var", SbxVARIANT }, { "UCase", SbxSTRING, 1 | _FUNCTION, RTLNAME(UCase) }, { "String", SbxSTRING }, |