diff options
author | Andreas Bregas <ab@openoffice.org> | 2001-10-26 12:33:25 +0000 |
---|---|---|
committer | Andreas Bregas <ab@openoffice.org> | 2001-10-26 12:33:25 +0000 |
commit | 0904159bda05ada2f5a34a69f7b21e52c26bd554 (patch) | |
tree | 6a6d0625938da7e3bf5f835627a0e0788e0f709d /basic/source/runtime/stdobj.cxx | |
parent | e0b3f12304350ccadd0ed95b92f09a2602da9d1f (diff) |
#92728# New RTL functions CDateToIso, CDateFromIso
Diffstat (limited to 'basic/source/runtime/stdobj.cxx')
-rw-r--r-- | basic/source/runtime/stdobj.cxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/basic/source/runtime/stdobj.cxx b/basic/source/runtime/stdobj.cxx index 7373cc7b32aa..a84a316427ea 100644 --- a/basic/source/runtime/stdobj.cxx +++ b/basic/source/runtime/stdobj.cxx @@ -2,9 +2,9 @@ * * $RCSfile: stdobj.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: mh $ $Date: 2001-10-17 18:35:14 $ + * last change: $Author: ab $ $Date: 2001-10-26 13:33:25 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -132,6 +132,10 @@ static Methods aMethods[] = { { "expression", SbxVARIANT }, { "CDate", SbxDATE, 1 | _FUNCTION, RTLNAME(CDate) }, { "expression", SbxVARIANT }, +{ "CDateFromIso", SbxDATE, 1 | _FUNCTION, RTLNAME(CDateFromIso) }, + { "IsoDate", SbxSTRING }, +{ "CDateToIso", SbxSTRING, 1 | _FUNCTION, RTLNAME(CDateToIso) }, + { "Date", SbxDATE }, { "CDbl", SbxDOUBLE, 1 | _FUNCTION, RTLNAME(CDbl) }, { "expression", SbxVARIANT }, { "CF_BITMAP", SbxINTEGER, _CPROP, RTLNAME(CF_BITMAP) }, |