summaryrefslogtreecommitdiff
path: root/cppuhelper/source/implementationentry.cxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 09:33:53 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 09:33:53 +0000
commit42d7a4f1efb46327e3126804f662e1cf43e5a6f8 (patch)
tree61dbb50b5fac46fbe4c4a16b82fe18c4a25f51d6 /cppuhelper/source/implementationentry.cxx
parent25c1a55e3fe05ea80705c6749627f41494e402a2 (diff)
INTEGRATION: CWS warnings01 (1.1.190); FILE MERGED
2005/09/22 15:38:35 sb 1.1.190.3: RESYNC: (1.1-1.2); FILE MERGED 2005/09/07 11:05:29 sb 1.1.190.2: #i53898# Made code warning-free. 2005/08/31 16:24:56 sb 1.1.190.1: #i53898# Made code warning-free.
Diffstat (limited to 'cppuhelper/source/implementationentry.cxx')
-rw-r--r--cppuhelper/source/implementationentry.cxx13
1 files changed, 5 insertions, 8 deletions
diff --git a/cppuhelper/source/implementationentry.cxx b/cppuhelper/source/implementationentry.cxx
index 3fb0cf7c2626..4947223171e3 100644
--- a/cppuhelper/source/implementationentry.cxx
+++ b/cppuhelper/source/implementationentry.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: implementationentry.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 09:27:16 $
+ * last change: $Author: hr $ $Date: 2006-06-19 10:33:53 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -48,7 +48,7 @@ using namespace ::com::sun::star::registry;
namespace cppu {
sal_Bool component_writeInfoHelper(
- void *pServiceManager, void *pRegistryKey , const struct ImplementationEntry entries[] )
+ void *, void *pRegistryKey , const struct ImplementationEntry entries[] )
{
sal_Bool bRet = sal_False;
try
@@ -72,9 +72,8 @@ sal_Bool component_writeInfoHelper(
bRet = sal_True;
}
}
- catch ( InvalidRegistryException &e )
+ catch ( InvalidRegistryException & )
{
- e;
OSL_ENSURE( sal_False, "### InvalidRegistryException!" );
}
return bRet;
@@ -82,9 +81,7 @@ sal_Bool component_writeInfoHelper(
void * component_getFactoryHelper(
- const sal_Char * pImplName,
- void * pServiceManager,
- void * pRegistryKey,
+ const sal_Char * pImplName, void *, void *,
const struct ImplementationEntry entries[] )
{