From 4024d807f832fea0d7ac3afed73fa5d8f7b88bad Mon Sep 17 00:00:00 2001
From: Jens-Heiner Rechtien
Date: Mon, 19 Jun 2006 09:35:18 +0000
Subject: [PATCH] INTEGRATION: CWS warnings01 (1.5.60); FILE MERGED 2005/09/22
15:40:16 sb 1.5.60.2: RESYNC: (1.5-1.6); FILE MERGED 2005/09/07 11:05:31 sb
1.5.60.1: #i53898# Made code warning-free.
---
cppuhelper/source/stdidlclass.cxx | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/cppuhelper/source/stdidlclass.cxx b/cppuhelper/source/stdidlclass.cxx
index 888d4242866d..966915158403 100644
--- a/cppuhelper/source/stdidlclass.cxx
+++ b/cppuhelper/source/stdidlclass.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: stdidlclass.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 09:29:27 $
+ * last change: $Author: hr $ $Date: 2006-06-19 10:35:18 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -84,7 +84,7 @@ public:
// XIdlClass
virtual Sequence< Reference< XIdlClass > > SAL_CALL getClasses( ) throw(RuntimeException)
{ return Sequence < Reference < XIdlClass > > (); }
- virtual Reference< XIdlClass > SAL_CALL getClass( const ::rtl::OUString& aName ) throw(RuntimeException)
+ virtual Reference< XIdlClass > SAL_CALL getClass( const ::rtl::OUString& ) throw(RuntimeException)
{ return Reference < XIdlClass > (); }
virtual sal_Bool SAL_CALL equals( const Reference< XIdlClass >& Type ) throw(RuntimeException)
{ return getName() == Type->getName(); }
@@ -102,17 +102,17 @@ public:
virtual Reference< XIdlClass > SAL_CALL getComponentType( ) throw(RuntimeException)
{ return Reference < XIdlClass > (); }
- virtual Reference< XIdlField > SAL_CALL getField( const ::rtl::OUString& aName ) throw(RuntimeException)
+ virtual Reference< XIdlField > SAL_CALL getField( const ::rtl::OUString& ) throw(RuntimeException)
{ return Reference < XIdlField > (); }
virtual Sequence< Reference< XIdlField > > SAL_CALL getFields( ) throw(RuntimeException)
{ return Sequence< Reference < XIdlField > > (); }
- virtual Reference< XIdlMethod > SAL_CALL getMethod( const ::rtl::OUString& aName ) throw(RuntimeException)
+ virtual Reference< XIdlMethod > SAL_CALL getMethod( const ::rtl::OUString& ) throw(RuntimeException)
{ return Reference < XIdlMethod > (); }
virtual Sequence< Reference< XIdlMethod > > SAL_CALL getMethods( ) throw(RuntimeException)
{ return Sequence < Reference < XIdlMethod > > (); }
virtual Reference< XIdlArray > SAL_CALL getArray( ) throw(RuntimeException)
{ return Reference < XIdlArray > (); }
- virtual void SAL_CALL createObject( Any& obj ) throw(RuntimeException) {}
+ virtual void SAL_CALL createObject( Any& ) throw(RuntimeException) {}
private:
OUString m_sImplementationName;