summaryrefslogtreecommitdiff
path: root/UnoControls
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 22:10:00 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 22:10:00 +0000
commit9b199c020ff5ebfc659a3b5834b8f4c6d71e9e50 (patch)
tree28151284f5b78eaffbb1d7d1607335f7c340b354 /UnoControls
parentfea2bd9e750b09874f451d4c0e2efd954bba9d8b (diff)
INTEGRATION: CWS warnings01 (1.5.4); FILE MERGED
2005/10/25 09:12:55 pl 1.5.4.1: #i55991# removed warnings for solaris platform
Diffstat (limited to 'UnoControls')
-rw-r--r--UnoControls/source/controls/statusindicator.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/UnoControls/source/controls/statusindicator.cxx b/UnoControls/source/controls/statusindicator.cxx
index 4861527e35a9..969a8d218082 100644
--- a/UnoControls/source/controls/statusindicator.cxx
+++ b/UnoControls/source/controls/statusindicator.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: statusindicator.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: rt $ $Date: 2005-09-09 09:19:09 $
+ * last change: $Author: hr $ $Date: 2006-06-19 23:10:00 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -132,12 +132,12 @@ Any SAL_CALL StatusIndicator::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
{
@@ -348,7 +348,7 @@ Size SAL_CALL StatusIndicator::getPreferredSize () throw( RuntimeException )
// XLayoutConstrains
//____________________________________________________________________________________________________________
-Size SAL_CALL StatusIndicator::calcAdjustedSize ( const Size& rNewSize ) throw( RuntimeException )
+Size SAL_CALL StatusIndicator::calcAdjustedSize ( const Size& /*rNewSize*/ ) throw( RuntimeException )
{
return getPreferredSize () ;
}
@@ -375,7 +375,7 @@ void SAL_CALL StatusIndicator::createPeer ( const Reference< XToolkit > & rToolk
// XControl
//____________________________________________________________________________________________________________
-sal_Bool SAL_CALL StatusIndicator::setModel ( const Reference< XControlModel > & rModel ) throw( RuntimeException )
+sal_Bool SAL_CALL StatusIndicator::setModel ( const Reference< XControlModel > & /*rModel*/ ) throw( RuntimeException )
{
// We have no model.
return sal_False ;