summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--basic/source/sbx/sbxdec.cxx8
-rw-r--r--basic/source/sbx/sbxlng.cxx8
-rw-r--r--basic/source/sbx/sbxulng.cxx8
3 files changed, 12 insertions, 12 deletions
diff --git a/basic/source/sbx/sbxdec.cxx b/basic/source/sbx/sbxdec.cxx
index 5548db0bf968..a5d0b6046413 100644
--- a/basic/source/sbx/sbxdec.cxx
+++ b/basic/source/sbx/sbxdec.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: sbxdec.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: hr $ $Date: 2007-06-27 14:29:48 $
+ * last change: $Author: rt $ $Date: 2007-11-13 15:23:03 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -480,7 +480,7 @@ SbxDecimal* ImpGetDecimal( const SbxValues* p )
pnDecRes->addRef();
start:
- switch( eType )
+ switch( +eType )
{
case SbxNULL:
SbxBase::SetError( SbxERR_CONVERSION );
@@ -606,7 +606,7 @@ void ImpPutDecimal( SbxValues* p, SbxDecimal* pDec )
SbxValues aTmp;
start:
- switch( p->eType )
+ switch( +p->eType )
{
// hier muss getestet werden
case SbxCHAR:
diff --git a/basic/source/sbx/sbxlng.cxx b/basic/source/sbx/sbxlng.cxx
index ac6100747362..e1c7203ff307 100644
--- a/basic/source/sbx/sbxlng.cxx
+++ b/basic/source/sbx/sbxlng.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: sbxlng.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: hr $ $Date: 2007-06-27 14:31:05 $
+ * last change: $Author: rt $ $Date: 2007-11-13 15:23:32 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -47,7 +47,7 @@ INT32 ImpGetLong( const SbxValues* p )
SbxValues aTmp;
INT32 nRes;
start:
- switch( p->eType )
+ switch( +p->eType )
{
case SbxNULL:
SbxBase::SetError( SbxERR_CONVERSION );
@@ -207,7 +207,7 @@ void ImpPutLong( SbxValues* p, INT32 n )
SbxValues aTmp;
start:
- switch( p->eType )
+ switch( +p->eType )
{
// Ab hier muss getestet werden
case SbxCHAR:
diff --git a/basic/source/sbx/sbxulng.cxx b/basic/source/sbx/sbxulng.cxx
index 3a2e5865f6af..97918614a280 100644
--- a/basic/source/sbx/sbxulng.cxx
+++ b/basic/source/sbx/sbxulng.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: sbxulng.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: hr $ $Date: 2007-06-27 14:32:46 $
+ * last change: $Author: rt $ $Date: 2007-11-13 15:24:35 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -47,7 +47,7 @@ UINT32 ImpGetULong( const SbxValues* p )
SbxValues aTmp;
UINT32 nRes;
start:
- switch( p->eType )
+ switch( +p->eType )
{
case SbxNULL:
SbxBase::SetError( SbxERR_CONVERSION );
@@ -214,7 +214,7 @@ void ImpPutULong( SbxValues* p, UINT32 n )
{
SbxValues aTmp;
start:
- switch( p->eType )
+ switch( +p->eType )
{
case SbxULONG:
p->nULong = n; break;