From 5f1950dcc97e8361f217ffaeab0fb0e419cecf3b Mon Sep 17 00:00:00 2001 From: RĂ¼diger Timm Date: Wed, 25 Jul 2007 07:28:11 +0000 Subject: INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/10 13:38:13 bm 1.2.12.2: #i69281# warnings removed 2007/07/10 11:57:28 bm 1.2.12.1: #i69281# warnings removed --- .../chartapiwrapper/WrappedAddInProperty.cxx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'chart2/source/controller/chartapiwrapper/WrappedAddInProperty.cxx') diff --git a/chart2/source/controller/chartapiwrapper/WrappedAddInProperty.cxx b/chart2/source/controller/chartapiwrapper/WrappedAddInProperty.cxx index 3bf1da4f91ae..39d1fc086b22 100644 --- a/chart2/source/controller/chartapiwrapper/WrappedAddInProperty.cxx +++ b/chart2/source/controller/chartapiwrapper/WrappedAddInProperty.cxx @@ -4,9 +4,9 @@ * * $RCSfile: WrappedAddInProperty.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: vg $ $Date: 2007-05-22 17:20:29 $ + * last change: $Author: rt $ $Date: 2007-07-25 08:27:59 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -60,7 +60,7 @@ WrappedAddInProperty::~WrappedAddInProperty() { } -void WrappedAddInProperty::setPropertyValue( const Any& rOuterValue, const Reference< beans::XPropertySet >& xInnerPropertySet ) const +void WrappedAddInProperty::setPropertyValue( const Any& rOuterValue, const Reference< beans::XPropertySet >& /*xInnerPropertySet*/ ) const throw (beans::UnknownPropertyException, beans::PropertyVetoException, lang::IllegalArgumentException, lang::WrappedTargetException, uno::RuntimeException) { Reference< util::XRefreshable > xAddIn; @@ -70,7 +70,7 @@ void WrappedAddInProperty::setPropertyValue( const Any& rOuterValue, const Refer m_rChartDocumentWrapper.setAddIn( xAddIn ); } -Any WrappedAddInProperty::getPropertyValue( const Reference< beans::XPropertySet >& xInnerPropertySet ) const +Any WrappedAddInProperty::getPropertyValue( const Reference< beans::XPropertySet >& /*xInnerPropertySet*/ ) const throw (beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException) { return uno::makeAny( m_rChartDocumentWrapper.getAddIn() ); @@ -89,7 +89,7 @@ WrappedBaseDiagramProperty::~WrappedBaseDiagramProperty() { } -void WrappedBaseDiagramProperty::setPropertyValue( const Any& rOuterValue, const Reference< beans::XPropertySet >& xInnerPropertySet ) const +void WrappedBaseDiagramProperty::setPropertyValue( const Any& rOuterValue, const Reference< beans::XPropertySet >& /*xInnerPropertySet*/ ) const throw (beans::UnknownPropertyException, beans::PropertyVetoException, lang::IllegalArgumentException, lang::WrappedTargetException, uno::RuntimeException) { rtl::OUString aBaseDiagram; @@ -99,7 +99,7 @@ void WrappedBaseDiagramProperty::setPropertyValue( const Any& rOuterValue, const m_rChartDocumentWrapper.setBaseDiagram( aBaseDiagram ); } -Any WrappedBaseDiagramProperty::getPropertyValue( const Reference< beans::XPropertySet >& xInnerPropertySet ) const +Any WrappedBaseDiagramProperty::getPropertyValue( const Reference< beans::XPropertySet >& /*xInnerPropertySet*/ ) const throw (beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException) { return uno::makeAny( m_rChartDocumentWrapper.getBaseDiagram() ); @@ -118,13 +118,13 @@ WrappedAdditionalShapesProperty::~WrappedAdditionalShapesProperty() { } -void WrappedAdditionalShapesProperty::setPropertyValue( const Any& rOuterValue, const Reference< beans::XPropertySet >& xInnerPropertySet ) const +void WrappedAdditionalShapesProperty::setPropertyValue( const Any& /*rOuterValue*/, const Reference< beans::XPropertySet >& /*xInnerPropertySet*/ ) const throw (beans::UnknownPropertyException, beans::PropertyVetoException, lang::IllegalArgumentException, lang::WrappedTargetException, uno::RuntimeException) { throw lang::IllegalArgumentException( C2U("AdditionalShapes is a read only property"), 0, 0 ); } -Any WrappedAdditionalShapesProperty::getPropertyValue( const Reference< beans::XPropertySet >& xInnerPropertySet ) const +Any WrappedAdditionalShapesProperty::getPropertyValue( const Reference< beans::XPropertySet >& /*xInnerPropertySet*/ ) const throw (beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException) { return uno::makeAny( m_rChartDocumentWrapper.getAdditionalShapes() ); @@ -143,7 +143,7 @@ WrappedRefreshAddInAllowedProperty::~WrappedRefreshAddInAllowedProperty() { } -void WrappedRefreshAddInAllowedProperty::setPropertyValue( const Any& rOuterValue, const Reference< beans::XPropertySet >& xInnerPropertySet ) const +void WrappedRefreshAddInAllowedProperty::setPropertyValue( const Any& rOuterValue, const Reference< beans::XPropertySet >& /* xInnerPropertySet */ ) const throw (beans::UnknownPropertyException, beans::PropertyVetoException, lang::IllegalArgumentException, lang::WrappedTargetException, uno::RuntimeException) { sal_Bool bUpdateAddIn = sal_True; @@ -153,7 +153,7 @@ void WrappedRefreshAddInAllowedProperty::setPropertyValue( const Any& rOuterValu m_rChartDocumentWrapper.setUpdateAddIn( bUpdateAddIn ); } -Any WrappedRefreshAddInAllowedProperty::getPropertyValue( const Reference< beans::XPropertySet >& xInnerPropertySet ) const +Any WrappedRefreshAddInAllowedProperty::getPropertyValue( const Reference< beans::XPropertySet >& /* xInnerPropertySet */ ) const throw (beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException) { return uno::makeAny( m_rChartDocumentWrapper.getUpdateAddIn() ); -- cgit