diff options
author | Michael Stahl <mstahl@redhat.com> | 2016-02-09 16:09:10 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2016-02-09 17:05:21 +0100 |
commit | a0d873615c5c11a8154da213171b50c50c081305 (patch) | |
tree | c6710b0e0dd7987f141d738e9a4f2ad39aaeaabb /udkapi/com/sun/star/script | |
parent | 8fbbb923ea752e3c5b147824f0dc04e4b9e27dad (diff) |
udkapi: fix doxygen warnings
Change-Id: I5f8c8df369aa7bb7f0647dbf4b25c39203d11b34
Diffstat (limited to 'udkapi/com/sun/star/script')
-rw-r--r-- | udkapi/com/sun/star/script/XDebugging.idl | 4 | ||||
-rw-r--r-- | udkapi/com/sun/star/script/XDirectInvocation.idl | 1 | ||||
-rw-r--r-- | udkapi/com/sun/star/script/XInvocation.idl | 1 |
3 files changed, 5 insertions, 1 deletions
diff --git a/udkapi/com/sun/star/script/XDebugging.idl b/udkapi/com/sun/star/script/XDebugging.idl index 64cc747d4b60..ace72cc29a75 100644 --- a/udkapi/com/sun/star/script/XDebugging.idl +++ b/udkapi/com/sun/star/script/XDebugging.idl @@ -49,11 +49,13 @@ published interface XDebugging: com::sun::star::uno::XInterface /** Evaluates an expression. - @returns the value of the expression as string. + @param aSourceCode the expression to be evaluated. @param nCallStackPos Position in the call stack for which the expression should be evaluated. 0 is the top/actual position in the call in the call stack, 1 the next and so on. + + @returns the value of the expression as string. */ string eval( [in] string aSourceCode, [in] short nCallStackPos ); diff --git a/udkapi/com/sun/star/script/XDirectInvocation.idl b/udkapi/com/sun/star/script/XDirectInvocation.idl index 801ad43e95c4..ff21fb17ac91 100644 --- a/udkapi/com/sun/star/script/XDirectInvocation.idl +++ b/udkapi/com/sun/star/script/XDirectInvocation.idl @@ -39,6 +39,7 @@ published interface XDirectInvocation: com::sun::star::uno::XInterface { /** provides access to methods and properties exposed by an object. + @param aName the method to invoke @param aParams all parameters, out parameters are not supported */ any directInvoke( [in] string aName, diff --git a/udkapi/com/sun/star/script/XInvocation.idl b/udkapi/com/sun/star/script/XInvocation.idl index 7545fdb415d6..0db1a9abf1e5 100644 --- a/udkapi/com/sun/star/script/XInvocation.idl +++ b/udkapi/com/sun/star/script/XInvocation.idl @@ -51,6 +51,7 @@ published interface XInvocation: com::sun::star::uno::XInterface /** provides access to methods exposed by an object. + @param aFunctionName the method to invoke @param aParams all parameters; pure out params are undefined in sequence, the value has to be ignored by the callee @param aOutParamIndex This sequence contains the indices of all parameters |