summaryrefslogtreecommitdiff
path: root/dbaccess/source
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 01:48:09 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 01:48:09 +0000
commitd0c7b6b083304ebbcdfddd7ee1dc5ad88e1ae7e8 (patch)
tree32776f1035ca62f0e1668d348f2824fc7ca1a564 /dbaccess/source
parentbd4fd29ea87d35f575a6057a66c4db662d830b11 (diff)
INTEGRATION: CWS warnings01 (1.4.50); FILE MERGED
2006/03/24 15:35:55 fs 1.4.50.1: #i57457# warning-free code (unxlngi6/.pro + unxsoli4.pro)
Diffstat (limited to 'dbaccess/source')
-rw-r--r--dbaccess/source/core/misc/ContainerMediator.cxx10
-rw-r--r--dbaccess/source/core/misc/PropertyForward.cxx10
2 files changed, 10 insertions, 10 deletions
diff --git a/dbaccess/source/core/misc/ContainerMediator.cxx b/dbaccess/source/core/misc/ContainerMediator.cxx
index aa0e4e2136a1..1314ed23dcaa 100644
--- a/dbaccess/source/core/misc/ContainerMediator.cxx
+++ b/dbaccess/source/core/misc/ContainerMediator.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: ContainerMediator.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 13:55:13 $
+ * last change: $Author: hr $ $Date: 2006-06-20 02:47:56 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -58,8 +58,8 @@ DBG_NAME(OContainerMediator)
OContainerMediator::OContainerMediator( const Reference< XContainer >& _xContainer
,const Reference< XNameAccess >& _xSettings
,sal_Bool _bTables)
- : m_xContainer(_xContainer)
- , m_xSettings(_xSettings)
+ : m_xSettings(_xSettings)
+ , m_xContainer(_xContainer)
, m_bTables(_bTables)
{
DBG_CTOR(OContainerMediator,NULL);
@@ -127,7 +127,7 @@ void SAL_CALL OContainerMediator::elementRemoved( const ContainerEvent& _rEvent
}
}
// -----------------------------------------------------------------------------
-void SAL_CALL OContainerMediator::elementReplaced( const ContainerEvent& _rEvent ) throw(RuntimeException)
+void SAL_CALL OContainerMediator::elementReplaced( const ContainerEvent& /*_rEvent*/ ) throw(RuntimeException)
{
}
diff --git a/dbaccess/source/core/misc/PropertyForward.cxx b/dbaccess/source/core/misc/PropertyForward.cxx
index 6fd8b6b28b31..da0c495bf58e 100644
--- a/dbaccess/source/core/misc/PropertyForward.cxx
+++ b/dbaccess/source/core/misc/PropertyForward.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: PropertyForward.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: vg $ $Date: 2006-05-24 11:55:54 $
+ * last change: $Author: hr $ $Date: 2006-06-20 02:48:09 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -69,9 +69,9 @@ OPropertyForward::OPropertyForward(const Reference< XPropertySet>& _xSource
,const Reference< XNameAccess>& _xDestContainer
,const ::rtl::OUString& _sName
,const ::std::vector< ::rtl::OUString>& _aPropertyList)
- : m_xDestContainer(_xDestContainer)
+ : m_xSource(_xSource)
+ , m_xDestContainer(_xDestContainer)
, m_sName(_sName)
- , m_xSource(_xSource)
, m_bInInsert(sal_False)
{
DBG_CTOR(OPropertyForward,NULL);
@@ -137,7 +137,7 @@ void SAL_CALL OPropertyForward::propertyChange( const PropertyChangeEvent& evt )
}
}
// -----------------------------------------------------------------------------
-void SAL_CALL OPropertyForward::disposing( const ::com::sun::star::lang::EventObject& _rSource ) throw (RuntimeException)
+void SAL_CALL OPropertyForward::disposing( const ::com::sun::star::lang::EventObject& /*_rSource*/ ) throw (RuntimeException)
{
::osl::MutexGuard aGuard(m_aMutex);
if ( m_xSource.is() )