summaryrefslogtreecommitdiff
path: root/udkapi/com/sun/star/script
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-05-01 00:26:55 +0200
committerMichael Stahl <mstahl@redhat.com>2013-06-04 12:01:08 +0200
commit392706b5f743b2f989ba5a120bbb31c2296bf902 (patch)
tree6d37555b819fb1c482106f29c0aede2a121ae819 /udkapi/com/sun/star/script
parented993aafc928717ead4fae6b6dac8845771d8661 (diff)
*api: fix loads of badly documented parameters
Change-Id: Ifcfdcc1aee5f45745ab17d83f69c2cf293b58196
Diffstat (limited to 'udkapi/com/sun/star/script')
-rw-r--r--udkapi/com/sun/star/script/XDebugging.idl2
-rw-r--r--udkapi/com/sun/star/script/XInvocationAdapterFactory2.idl4
-rw-r--r--udkapi/com/sun/star/script/XLibraryAccess.idl2
3 files changed, 4 insertions, 4 deletions
diff --git a/udkapi/com/sun/star/script/XDebugging.idl b/udkapi/com/sun/star/script/XDebugging.idl
index 5ca01942158a..a220b7c321a3 100644
--- a/udkapi/com/sun/star/script/XDebugging.idl
+++ b/udkapi/com/sun/star/script/XDebugging.idl
@@ -56,7 +56,7 @@ published interface XDebugging: com::sun::star::uno::XInterface
in the call stack, 1 the next and so on.
*/
string eval( [in] string aSourceCode,
- [in] short nCallStackPos );
+ [in] short CallStackPos );
/** Returns the engine's stack trace of the current execute position. Line break is the delimiter.
*/
diff --git a/udkapi/com/sun/star/script/XInvocationAdapterFactory2.idl b/udkapi/com/sun/star/script/XInvocationAdapterFactory2.idl
index 2cc20bdbe3c8..be271da7d438 100644
--- a/udkapi/com/sun/star/script/XInvocationAdapterFactory2.idl
+++ b/udkapi/com/sun/star/script/XInvocationAdapterFactory2.idl
@@ -37,7 +37,7 @@ published interface XInvocationAdapterFactory2 : com::sun::star::uno::XInterface
@param Invocation
invocation interface being called on incoming adapter calls
- @param aType
+ @param Types
supported types of adapter
@returns
@@ -46,7 +46,7 @@ published interface XInvocationAdapterFactory2 : com::sun::star::uno::XInterface
*/
com::sun::star::uno::XInterface createAdapter(
[in] XInvocation Invocation,
- [in] sequence< type > aTypes );
+ [in] sequence< type > Types );
};
}; }; }; };
diff --git a/udkapi/com/sun/star/script/XLibraryAccess.idl b/udkapi/com/sun/star/script/XLibraryAccess.idl
index 95cc85dc54c3..f00704293d9e 100644
--- a/udkapi/com/sun/star/script/XLibraryAccess.idl
+++ b/udkapi/com/sun/star/script/XLibraryAccess.idl
@@ -66,7 +66,7 @@ published interface XLibraryAccess: com::sun::star::uno::XInterface
@return an empty sequence, if this module is not found or the
code is not compiled.
*/
- sequence<byte> getModuleCode( [in] string aModuleName );
+ sequence<byte> getModuleCode( [in] string ModuleName );
/** get the source code of a function.
*/