summaryrefslogtreecommitdiff
path: root/unodevtools
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 23:51:44 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 23:51:44 +0000
commitdebb3a3d3102cc2f5758ebcddb665ba0db6f8bf0 (patch)
tree1234514f0dd9136e34d6bcaba04fa16f0a90fd1f /unodevtools
parenta20c2f455885f9e2c95b2689c2a63c81591dbaa2 (diff)
INTEGRATION: CWS warnings01 (1.4.2); FILE MERGED
2006/04/07 20:06:05 sb 1.4.2.2: RESYNC: (1.4-1.5); FILE MERGED 2005/11/09 11:51:21 pl 1.4.2.1: #i53898# removed warnings
Diffstat (limited to 'unodevtools')
-rw-r--r--unodevtools/source/unodevtools/typemanager.cxx16
1 files changed, 4 insertions, 12 deletions
diff --git a/unodevtools/source/unodevtools/typemanager.cxx b/unodevtools/source/unodevtools/typemanager.cxx
index 8d1d7c51127d..a62efa32cd13 100644
--- a/unodevtools/source/unodevtools/typemanager.cxx
+++ b/unodevtools/source/unodevtools/typemanager.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: typemanager.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: vg $ $Date: 2006-03-15 09:22:04 $
+ * last change: $Author: hr $ $Date: 2006-06-20 00:51:44 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -56,33 +56,25 @@ static RTTypeClass mapTypeClass(TypeClass typeclass) {
switch(typeclass) {
case TypeClass_ENUM:
return RT_TYPE_ENUM;
- break;
case TypeClass_TYPEDEF:
return RT_TYPE_TYPEDEF;
- break;
case TypeClass_STRUCT:
return RT_TYPE_STRUCT;
- break;
case TypeClass_UNION:
return RT_TYPE_UNION;
- break;
case TypeClass_EXCEPTION:
return RT_TYPE_EXCEPTION;
- break;
case TypeClass_INTERFACE:
return RT_TYPE_INTERFACE;
- break;
case TypeClass_SERVICE:
return RT_TYPE_SERVICE;
- break;
case TypeClass_MODULE:
return RT_TYPE_MODULE;
- break;
case TypeClass_CONSTANTS:
return RT_TYPE_CONSTANTS;
- break;
case TypeClass_SINGLETON:
return RT_TYPE_SINGLETON;
+ default:
break;
}
return RT_TYPE_INVALID;
@@ -202,7 +194,7 @@ void* getTypeBlob(Reference< XHierarchicalNameAccess > xTDmgr,
const OString& typeName, sal_uInt32* pBlob);
typereg::Reader UnoTypeManager::getTypeReader(
- const OString& name, sal_Bool * pIsExtraType ) const
+ const OString& name, sal_Bool * /*pIsExtraType*/ ) const
{
typereg::Reader reader;