diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-05-01 00:26:55 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-06-04 12:01:08 +0200 |
commit | 392706b5f743b2f989ba5a120bbb31c2296bf902 (patch) | |
tree | 6d37555b819fb1c482106f29c0aede2a121ae819 /udkapi/com/sun/star/registry | |
parent | ed993aafc928717ead4fae6b6dac8845771d8661 (diff) |
*api: fix loads of badly documented parameters
Change-Id: Ifcfdcc1aee5f45745ab17d83f69c2cf293b58196
Diffstat (limited to 'udkapi/com/sun/star/registry')
-rw-r--r-- | udkapi/com/sun/star/registry/XRegistryKey.idl | 16 | ||||
-rw-r--r-- | udkapi/com/sun/star/registry/XSimpleRegistry.idl | 4 |
2 files changed, 10 insertions, 10 deletions
diff --git a/udkapi/com/sun/star/registry/XRegistryKey.idl b/udkapi/com/sun/star/registry/XRegistryKey.idl index d2759d9e3112..c39357c54b6b 100644 --- a/udkapi/com/sun/star/registry/XRegistryKey.idl +++ b/udkapi/com/sun/star/registry/XRegistryKey.idl @@ -303,7 +303,7 @@ published interface XRegistryKey: com::sun::star::uno::XInterface /** deletes a key from the registry. - @param aKeyName + @param KeyName specifies the relative path from the current key to the key which will be deleted. @@ -311,7 +311,7 @@ published interface XRegistryKey: com::sun::star::uno::XInterface if the registry is not open, the registry is readonly, the key does not exists or if the key is of type LINK. */ - void deleteKey( [in] string rKeyName ) + void deleteKey( [in] string KeyName ) raises( com::sun::star::registry::InvalidRegistryException ); // DOCUMENTATION CHANGED FOR XRegistryKey::openKeys @@ -364,7 +364,7 @@ published interface XRegistryKey: com::sun::star::uno::XInterface /** deletes a link from the registry. - @param aLinkName + @param LinkName specifies the relative path from the current key to the link which will be deleted. @@ -372,21 +372,21 @@ published interface XRegistryKey: com::sun::star::uno::XInterface if the registry is not open, the registry is readonly, or if the link does not exist. */ - void deleteLink( [in] string rLinkName ) + void deleteLink( [in] string LinkName ) raises( com::sun::star::registry::InvalidRegistryException ); // DOCUMENTATION CHANGED FOR XRegistryKey::getLinkTarget /** @returns the target (complete path of a key) of the link specified by rLinkName. - @param rLinKName + @param LinkName specifies the relative path from the current key to the link which target will be returned. @throws InvalidRegistryException if the registry is not open or the link does not exists. */ - string getLinkTarget( [in] string rLinkName ) + string getLinkTarget( [in] string LinkName ) raises( com::sun::star::registry::InvalidRegistryException ); // DOCUMENTATION CHANGED FOR XRegistryKey::getResolvedName @@ -395,13 +395,13 @@ published interface XRegistryKey: com::sun::star::uno::XInterface If a link could not be resolved, the linktarget concatenated with the unresolved rest of the name, will be returned. - @param rKeyName + @param KeyName specifies a relative path from the current key which will be resolved from all links. @throws InvalidRegistryException if the registry is not open or a recursion was detected. */ - string getResolvedName( [in] string aKeyName ) + string getResolvedName( [in] string KeyName ) raises( com::sun::star::registry::InvalidRegistryException ); }; diff --git a/udkapi/com/sun/star/registry/XSimpleRegistry.idl b/udkapi/com/sun/star/registry/XSimpleRegistry.idl index 5cf60eed4eca..544170a78dd9 100644 --- a/udkapi/com/sun/star/registry/XSimpleRegistry.idl +++ b/udkapi/com/sun/star/registry/XSimpleRegistry.idl @@ -46,7 +46,7 @@ published interface XSimpleRegistry: com::sun::star::uno::XInterface <p>If a local registry is already open, this function will close the currently open registry. - @param aURL + @param URL specifies the complete URL to access the data source. @param bReadOnly @@ -60,7 +60,7 @@ published interface XSimpleRegistry: com::sun::star::uno::XInterface @throws InvalidRegistryException if the registry does not exist. */ - void open( [in] string rURL, + void open( [in] string URL, [in] boolean bReadOnly, [in] boolean bCreate ) raises( com::sun::star::registry::InvalidRegistryException ); |