summaryrefslogtreecommitdiff
path: root/basic/source/sbx/sbxlng.cxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2007-11-13 14:24:35 +0000
committerRüdiger Timm <rt@openoffice.org>2007-11-13 14:24:35 +0000
commit60abaf451b57290eb24ade44ca4454c5ac970589 (patch)
treede805be632f1b0ddb08e39c69107629e0061c279 /basic/source/sbx/sbxlng.cxx
parent198330a98b4c191933382661210c58ed636c0556 (diff)
INTEGRATION: CWS sb82 (1.7.38); FILE MERGED
2007/11/08 10:13:09 sb 1.7.38.1: #i83412# Avoid warnings about switch cases that are not valid enum values (wntmsci11).
Diffstat (limited to 'basic/source/sbx/sbxlng.cxx')
-rw-r--r--basic/source/sbx/sbxlng.cxx8
1 files changed, 4 insertions, 4 deletions
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: