diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 22:08:41 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 22:08:41 +0000 |
commit | ef0eb4e3f607fb8fb48b470854444b7aaaea2567 (patch) | |
tree | fb689846dffe59ca6a3adeea4e8410eee5a00738 /UnoControls | |
parent | f43735ab5ebfbc72cb558e9f0e50b9eac88d87b0 (diff) |
INTEGRATION: CWS warnings01 (1.4.4); FILE MERGED
2005/10/25 09:12:32 pl 1.4.4.1: #i55991# removed warnings for solaris platform
Diffstat (limited to 'UnoControls')
-rw-r--r-- | UnoControls/source/base/basecontrol.cxx | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/UnoControls/source/base/basecontrol.cxx b/UnoControls/source/base/basecontrol.cxx index 4689a565b..8710c8332 100644 --- a/UnoControls/source/base/basecontrol.cxx +++ b/UnoControls/source/base/basecontrol.cxx @@ -4,9 +4,9 @@ * * $RCSfile: basecontrol.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: rt $ $Date: 2005-09-09 09:16:07 $ + * last change: $Author: hr $ $Date: 2006-06-19 23:08:41 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -244,11 +244,11 @@ Sequence< sal_Int8 > SAL_CALL BaseControl::getImplementationId() throw( RuntimeE // XAggregation //____________________________________________________________________________________________________________ -void SAL_CALL BaseControl::setDelegator( const Reference< XInterface >& xDelegator ) throw( RuntimeException ) +void SAL_CALL BaseControl::setDelegator( const Reference< XInterface >& xDel ) throw( RuntimeException ) { // Ready for multithreading MutexGuard aGuard( m_aMutex ); - m_xDelegator = xDelegator ; + m_xDelegator = xDel; } //____________________________________________________________________________________________________________ @@ -766,8 +766,8 @@ sal_Bool SAL_CALL BaseControl::setGraphics( const Reference< XGraphics >& xDevic // XView //____________________________________________________________________________________________________________ -void SAL_CALL BaseControl::setZoom( float fZoomX , - float fZoomY ) throw( RuntimeException ) +void SAL_CALL BaseControl::setZoom( float /*fZoomX*/ , + float /*fZoomY*/ ) throw( RuntimeException ) { // Not implemented yet } @@ -798,7 +798,7 @@ Size SAL_CALL BaseControl::getSize() throw( RuntimeException ) // XEventListener //____________________________________________________________________________________________________________ -void SAL_CALL BaseControl::disposing( const EventObject& aSource ) throw( RuntimeException ) +void SAL_CALL BaseControl::disposing( const EventObject& /*aSource*/ ) throw( RuntimeException ) { // Ready for multithreading MutexGuard aGuard( m_aMutex ); @@ -822,7 +822,7 @@ void SAL_CALL BaseControl::disposing( const EventObject& aSource ) throw( Runtim // XPaintListener //____________________________________________________________________________________________________________ -void SAL_CALL BaseControl::windowPaint( const PaintEvent& aEvent ) throw( RuntimeException ) +void SAL_CALL BaseControl::windowPaint( const PaintEvent& /*aEvent*/ ) throw( RuntimeException ) { // Ready for multithreading MutexGuard aGuard( m_aMutex ); @@ -871,7 +871,7 @@ void SAL_CALL BaseControl::windowMoved( const WindowEvent& aEvent ) throw( Runti // XWindowListener //____________________________________________________________________________________________________________ -void SAL_CALL BaseControl::windowShown( const EventObject& aEvent ) throw( RuntimeException ) +void SAL_CALL BaseControl::windowShown( const EventObject& /*aEvent*/ ) throw( RuntimeException ) { } @@ -879,7 +879,7 @@ void SAL_CALL BaseControl::windowShown( const EventObject& aEvent ) throw( Runti // XWindowListener //____________________________________________________________________________________________________________ -void SAL_CALL BaseControl::windowHidden( const EventObject& aEvent ) throw( RuntimeException ) +void SAL_CALL BaseControl::windowHidden( const EventObject& /*aEvent*/ ) throw( RuntimeException ) { } @@ -974,9 +974,9 @@ WindowDescriptor* BaseControl::impl_getWindowDescriptor( const Reference< XWindo // protected method //____________________________________________________________________________________________________________ -void BaseControl::impl_paint( sal_Int32 nX , - sal_Int32 nY , - const Reference< XGraphics >& xGraphics ) +void BaseControl::impl_paint( sal_Int32 /*nX*/ , + sal_Int32 /*nY*/ , + const Reference< XGraphics >& /*xGraphics*/ ) { // - one paint method for peer AND view !!! // (see also => "windowPaint()" and "draw()") @@ -987,7 +987,7 @@ void BaseControl::impl_paint( sal_Int32 nX , // protected method //____________________________________________________________________________________________________________ -void BaseControl::impl_recalcLayout( const WindowEvent& aEvent ) +void BaseControl::impl_recalcLayout( const WindowEvent& /*aEvent*/ ) { // We need as virtual function to support automaticly resizing of derived controls! // But we make it not pure virtual because it's not neccessary for all derived classes! |