diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-10-10 10:06:55 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-10-10 10:13:36 +0200 |
commit | ab02cebc9ae257bf1de4a2ab35c4508d246c6fb4 (patch) | |
tree | c6ea6e44b35d791c6b93155bb0a3891de5095c73 /udkapi/com/sun/star/registry | |
parent | ee83131e8bf27758c20392d78bac298cde1e5161 (diff) |
Change back method parameter name spellings
...changing them is deemed incompatible, so best avoid such cosmetic changes.
Change-Id: Id57d38721a4f3b83933fa13c509c20eacb95f903
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 c39357c54b6b..a7bb78dcc89a 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 KeyName + @param rKeyName 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 KeyName ) + void deleteKey( [in] string rKeyName ) 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 LinkName + @param rLinkName 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 LinkName ) + void deleteLink( [in] string rLinkName ) 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 LinkName + @param rLinkName 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 LinkName ) + string getLinkTarget( [in] string rLinkName ) 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 KeyName + @param aKeyName 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 KeyName ) + string getResolvedName( [in] string aKeyName ) 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 544170a78dd9..119046ade08c 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 URL + @param rURL 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 URL, + void open( [in] string rURL, [in] boolean bReadOnly, [in] boolean bCreate ) raises( com::sun::star::registry::InvalidRegistryException ); |