summaryrefslogtreecommitdiff
path: root/scripting
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 09:18:11 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 09:18:11 +0000
commit7106e290865d0eaabbf2795d70a583ea09055535 (patch)
tree5321d7238b61001bc608b23ccd6c0755b0ae125e /scripting
parenta8be764909e1813a03541ba325bb375183c01e70 (diff)
INTEGRATION: CWS warnings01 (1.10.14); FILE MERGED
2005/12/22 14:40:47 ab 1.10.14.1: #i53898# Removed warnings for unxlngi6, unxlngi6.pro
Diffstat (limited to 'scripting')
-rw-r--r--scripting/source/basprov/basmethnode.cxx15
1 files changed, 13 insertions, 2 deletions
diff --git a/scripting/source/basprov/basmethnode.cxx b/scripting/source/basprov/basmethnode.cxx
index bbf1b9a83651..58a7a62d0431 100644
--- a/scripting/source/basprov/basmethnode.cxx
+++ b/scripting/source/basprov/basmethnode.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: basmethnode.cxx,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: rt $ $Date: 2005-09-09 02:22:29 $
+ * last change: $Author: hr $ $Date: 2006-06-19 10:18:11 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -243,6 +243,10 @@ namespace basprov
throw (IllegalArgumentException, script::CannotConvertException,
reflection::InvocationTargetException, RuntimeException)
{
+ (void)aParams;
+ (void)aOutParamIndex;
+ (void)aOutParam;
+
if ( aFunctionName == BASPROV_PROPERTY_EDITABLE )
{
::rtl::OUString sDocURL, sLibName, sModName;
@@ -340,6 +344,9 @@ namespace basprov
throw (UnknownPropertyException, script::CannotConvertException,
reflection::InvocationTargetException, RuntimeException)
{
+ (void)aPropertyName;
+ (void)aValue;
+
throw UnknownPropertyException(
::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "BasicMethodNodeImpl::setValue: property name is unknown!" ) ),
Reference< XInterface >() );
@@ -349,6 +356,8 @@ namespace basprov
Any BasicMethodNodeImpl::getValue( const ::rtl::OUString& aPropertyName ) throw (UnknownPropertyException, RuntimeException)
{
+ (void)aPropertyName;
+
throw UnknownPropertyException(
::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "BasicMethodNodeImpl::getValue: property name is unknown!" ) ),
Reference< XInterface >() );
@@ -369,6 +378,8 @@ namespace basprov
sal_Bool BasicMethodNodeImpl::hasProperty( const ::rtl::OUString& aName ) throw (RuntimeException)
{
+ (void)aName;
+
return sal_False;
}