summaryrefslogtreecommitdiff
path: root/scripting/source/basprov/basmethnode.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'scripting/source/basprov/basmethnode.cxx')
-rw-r--r--scripting/source/basprov/basmethnode.cxx21
1 files changed, 5 insertions, 16 deletions
diff --git a/scripting/source/basprov/basmethnode.cxx b/scripting/source/basprov/basmethnode.cxx
index 2b1de0bff3fe..e13f149aefcc 100644
--- a/scripting/source/basprov/basmethnode.cxx
+++ b/scripting/source/basprov/basmethnode.cxx
@@ -182,13 +182,9 @@ namespace basprov
}
- Any BasicMethodNodeImpl::invoke( const OUString& aFunctionName, const Sequence< Any >& aParams,
- Sequence< sal_Int16 >& aOutParamIndex, Sequence< Any >& aOutParam )
+ Any BasicMethodNodeImpl::invoke( const OUString& aFunctionName, const Sequence< Any >&,
+ Sequence< sal_Int16 >&, Sequence< Any >& )
{
- (void)aParams;
- (void)aOutParamIndex;
- (void)aOutParam;
-
if ( aFunctionName == BASPROV_PROPERTY_EDITABLE )
{
OUString sDocURL, sLibName, sModName;
@@ -268,20 +264,15 @@ namespace basprov
}
- void BasicMethodNodeImpl::setValue( const OUString& aPropertyName, const Any& aValue )
+ void BasicMethodNodeImpl::setValue( const OUString&, const Any& )
{
- (void)aPropertyName;
- (void)aValue;
-
throw UnknownPropertyException(
"BasicMethodNodeImpl::setValue: property name is unknown!" );
}
- Any BasicMethodNodeImpl::getValue( const OUString& aPropertyName )
+ Any BasicMethodNodeImpl::getValue( const OUString& )
{
- (void)aPropertyName;
-
throw UnknownPropertyException(
"BasicMethodNodeImpl::getValue: property name is unknown!" );
}
@@ -297,10 +288,8 @@ namespace basprov
}
- sal_Bool BasicMethodNodeImpl::hasProperty( const OUString& aName )
+ sal_Bool BasicMethodNodeImpl::hasProperty( const OUString& )
{
- (void)aName;
-
return false;
}