summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--basic/source/sbx/sbxbyte.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/basic/source/sbx/sbxbyte.cxx b/basic/source/sbx/sbxbyte.cxx
index 8877b15b4388..7e8cdb287b6a 100644
--- a/basic/source/sbx/sbxbyte.cxx
+++ b/basic/source/sbx/sbxbyte.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: sbxbyte.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: hr $ $Date: 2007-06-27 14:28:21 $
+ * last change: $Author: rt $ $Date: 2007-11-13 15:21:39 $
*
* 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 @@ BYTE ImpGetByte( const SbxValues* p )
SbxValues aTmp;
BYTE nRes;
start:
- switch( p->eType )
+ switch( +p->eType )
{
case SbxNULL:
SbxBase::SetError( SbxERR_CONVERSION );
@@ -250,7 +250,7 @@ start:
void ImpPutByte( SbxValues* p, BYTE n )
{
- switch( p->eType )
+ switch( +p->eType )
{
case SbxBYTE:
p->nByte = n; break;