diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 22:09:47 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 22:09:47 +0000 |
commit | 07a1737c8494d4ce1f3e4b4554ad5e3055fa8ce8 (patch) | |
tree | ee87b8e7f62192a3286a8b6ec7da9f0b0a51b91e /UnoControls | |
parent | 58722695b3c1e423d28d9e687a84637502e9fce2 (diff) |
INTEGRATION: CWS warnings01 (1.4.4); FILE MERGED
2005/10/25 10:22:35 pl 1.4.4.2: #i55991# removed warnings for solaris platform
2005/10/25 09:12:55 pl 1.4.4.1: #i55991# removed warnings for solaris platform
Diffstat (limited to 'UnoControls')
-rw-r--r-- | UnoControls/source/controls/progressmonitor.cxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/UnoControls/source/controls/progressmonitor.cxx b/UnoControls/source/controls/progressmonitor.cxx index 03dd3ed89..8dd9e1c30 100644 --- a/UnoControls/source/controls/progressmonitor.cxx +++ b/UnoControls/source/controls/progressmonitor.cxx @@ -4,9 +4,9 @@ * * $RCSfile: progressmonitor.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: rt $ $Date: 2005-09-09 09:18:55 $ + * last change: $Author: hr $ $Date: 2006-06-19 23:09:47 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -175,12 +175,12 @@ Any SAL_CALL ProgressMonitor::queryInterface( const Type& rType ) throw( Runtime // Attention: // Don't use mutex or guard in this method!!! Is a method of XInterface. Any aReturn ; - Reference< XInterface > xDelegator = BaseContainerControl::impl_getDelegator(); - if ( xDelegator.is() == sal_True ) + Reference< XInterface > xDel = BaseContainerControl::impl_getDelegator(); + if ( xDel.is() ) { // If an delegator exist, forward question to his queryInterface. // Delegator will ask his own queryAggregation! - aReturn = xDelegator->queryInterface( rType ); + aReturn = xDel->queryInterface( rType ); } else { @@ -584,7 +584,7 @@ Size SAL_CALL ProgressMonitor::getPreferredSize () throw( RuntimeException ) // XLayoutConstrains //____________________________________________________________________________________________________________ -Size SAL_CALL ProgressMonitor::calcAdjustedSize ( const Size& rNewSize ) throw( RuntimeException ) +Size SAL_CALL ProgressMonitor::calcAdjustedSize ( const Size& /*rNewSize*/ ) throw( RuntimeException ) { return getPreferredSize () ; } @@ -611,7 +611,7 @@ void SAL_CALL ProgressMonitor::createPeer ( const Reference< XToolkit > & rToolk // XControl //____________________________________________________________________________________________________________ -sal_Bool SAL_CALL ProgressMonitor::setModel ( const Reference< XControlModel > & rModel ) throw( RuntimeException ) +sal_Bool SAL_CALL ProgressMonitor::setModel ( const Reference< XControlModel > & /*rModel*/ ) throw( RuntimeException ) { // We have no model. return sal_False ; @@ -1069,7 +1069,7 @@ IMPL_TextlistItem* ProgressMonitor::impl_searchTopic ( const OUString& rTopic, s #ifdef DBG_UTIL // addText, updateText -sal_Bool ProgressMonitor::impl_debug_checkParameter ( const OUString& rTopic, const OUString& rText, sal_Bool bbeforeProgress ) +sal_Bool ProgressMonitor::impl_debug_checkParameter ( const OUString& rTopic, const OUString& rText, sal_Bool /*bbeforeProgress*/ ) { // Check "rTopic" if ( &rTopic == NULL ) return sal_False ; // NULL-pointer for reference ???!!! @@ -1086,7 +1086,7 @@ sal_Bool ProgressMonitor::impl_debug_checkParameter ( const OUString& rTopic, co } // removeText -sal_Bool ProgressMonitor::impl_debug_checkParameter ( const OUString& rTopic, sal_Bool bbeforeProgress ) +sal_Bool ProgressMonitor::impl_debug_checkParameter ( const OUString& rTopic, sal_Bool /*bbeforeProgress*/ ) { // Check "rTopic" if ( &rTopic == NULL ) return sal_False ; // NULL-pointer for reference ???!!! |