summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 20:27:54 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 20:27:54 +0000
commit2f9dba32e733b4a5a63358441295c154b17f428e (patch)
tree2a0fcfa9ecad309471b94c997f4e0e915b4ecfda /svtools
parentd36bcca00a6fe190bec9f5c825f7a9a7b64e80aa (diff)
INTEGRATION: CWS warnings01 (1.3.60); FILE MERGED
2005/11/15 19:56:05 pl 1.3.60.2: #i55991# removed warnings 2005/10/25 15:07:43 pl 1.3.60.1: #i55991# removed warnings for linux platform
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/uno/framestatuslistener.cxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/svtools/source/uno/framestatuslistener.cxx b/svtools/source/uno/framestatuslistener.cxx
index 83b3d4f768bc..1a5381193da7 100644
--- a/svtools/source/uno/framestatuslistener.cxx
+++ b/svtools/source/uno/framestatuslistener.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: framestatuslistener.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 16:53:23 $
+ * last change: $Author: hr $ $Date: 2006-06-19 21:27:54 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -69,10 +69,10 @@ FrameStatusListener::FrameStatusListener(
const Reference< XMultiServiceFactory >& rServiceManager,
const Reference< XFrame >& xFrame ) :
OWeakObject()
- , m_xServiceManager( rServiceManager )
- , m_xFrame( xFrame )
, m_bInitialized( sal_True )
, m_bDisposed( sal_False )
+ , m_xFrame( xFrame )
+ , m_xServiceManager( rServiceManager )
{
}
@@ -193,7 +193,7 @@ throw ( RuntimeException )
}
// XStatusListener
-void SAL_CALL FrameStatusListener::statusChanged( const FeatureStateEvent& Event )
+void SAL_CALL FrameStatusListener::statusChanged( const FeatureStateEvent& )
throw ( RuntimeException )
{
// must be implemented by sub class
@@ -242,11 +242,11 @@ void FrameStatusListener::addStatusListener( const rtl::OUString& aCommandURL )
xDispatch = xDispatchProvider->queryDispatch( aTargetURL, ::rtl::OUString(), 0 );
xStatusListener = Reference< XStatusListener >( static_cast< OWeakObject* >( this ), UNO_QUERY );
- URLToDispatchMap::iterator pIter = m_aListenerMap.find( aCommandURL );
- if ( pIter != m_aListenerMap.end() )
+ URLToDispatchMap::iterator aIter = m_aListenerMap.find( aCommandURL );
+ if ( aIter != m_aListenerMap.end() )
{
- Reference< XDispatch > xOldDispatch( pIter->second );
- pIter->second = xDispatch;
+ Reference< XDispatch > xOldDispatch( aIter->second );
+ aIter->second = xDispatch;
try
{