summaryrefslogtreecommitdiff
path: root/basic/source/classes
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2007-11-13 14:21:05 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2007-11-13 14:21:05 +0000
commit1f749dbeec0e1239076d2ac9b9395e21a16e4ffc (patch)
treea5abc192180c785961d46b2f81dac34e7f26862f /basic/source/classes
parent0032207c95589d5dc5fb248e233731b2ac0272f4 (diff)
INTEGRATION: CWS sb82 (1.49.16); FILE MERGED
2007/11/08 10:13:08 sb 1.49.16.1: #i83412# Avoid warnings about switch cases that are not valid enum values (wntmsci11).
Diffstat (limited to 'basic/source/classes')
-rw-r--r--basic/source/classes/sbunoobj.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/basic/source/classes/sbunoobj.cxx b/basic/source/classes/sbunoobj.cxx
index ed019bd11e5c..3aca07accc29 100644
--- a/basic/source/classes/sbunoobj.cxx
+++ b/basic/source/classes/sbunoobj.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: sbunoobj.cxx,v $
*
- * $Revision: 1.49 $
+ * $Revision: 1.50 $
*
- * last change: $Author: vg $ $Date: 2007-08-30 09:59:12 $
+ * last change: $Author: rt $ $Date: 2007-11-13 15:21:05 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -1628,7 +1628,7 @@ String Impl_GetSupportedInterfaces( SbUnoObject* pUnoObj )
String Dbg_SbxDataType2String( SbxDataType eType )
{
String aRet( RTL_CONSTASCII_USTRINGPARAM("Unknown Sbx-Type!") );
- switch( eType )
+ switch( +eType )
{
case SbxEMPTY: aRet = String( RTL_CONSTASCII_USTRINGPARAM("SbxEMPTY") ); break;
case SbxNULL: aRet = String( RTL_CONSTASCII_USTRINGPARAM("SbxNULL") ); break;