diff options
author | Oliver Bolte <obo@openoffice.org> | 2004-09-09 06:42:55 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2004-09-09 06:42:55 +0000 |
commit | 00bbda322c79e51565e3f2e8c6b25a90830a350e (patch) | |
tree | 490df2e84ccbcc5e65338a4883ba403b68386729 /basic | |
parent | 1658020a875d39ee70f5336a16a1a58481e1bd03 (diff) |
INTEGRATION: CWS ab10fixes (1.27.26); FILE MERGED
2004/08/18 14:26:06 ab 1.27.26.2: RESYNC: (1.27-1.28); FILE MERGED
2004/07/29 13:37:30 ab 1.27.26.1: #i27012#
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/classes/sbunoobj.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/basic/source/classes/sbunoobj.cxx b/basic/source/classes/sbunoobj.cxx index c3c867e5192b..216424cdbe4f 100644 --- a/basic/source/classes/sbunoobj.cxx +++ b/basic/source/classes/sbunoobj.cxx @@ -2,9 +2,9 @@ * * $RCSfile: sbunoobj.cxx,v $ * - * $Revision: 1.28 $ + * $Revision: 1.29 $ * - * last change: $Author: rt $ $Date: 2004-07-23 10:12:58 $ + * last change: $Author: obo $ $Date: 2004-09-09 07:42:55 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1280,6 +1280,8 @@ String Dbg_SbxDataType2String( SbxDataType eType ) case SbxULONG: aRet = String( RTL_CONSTASCII_USTRINGPARAM("SbxULONG") ); break; case SbxLONG64: aRet = String( RTL_CONSTASCII_USTRINGPARAM("SbxLONG64") ); break; case SbxULONG64: aRet = String( RTL_CONSTASCII_USTRINGPARAM("SbxULONG64") ); break; + case SbxSALINT64: aRet = String( RTL_CONSTASCII_USTRINGPARAM("SbxINT64") ); break; + case SbxSALUINT64: aRet = String( RTL_CONSTASCII_USTRINGPARAM("SbxUINT64") ); break; case SbxINT: aRet = String( RTL_CONSTASCII_USTRINGPARAM("SbxINT") ); break; case SbxUINT: aRet = String( RTL_CONSTASCII_USTRINGPARAM("SbxUINT") ); break; case SbxVOID: aRet = String( RTL_CONSTASCII_USTRINGPARAM("SbxVOID") ); break; |