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 | |
parent | ee83131e8bf27758c20392d78bac298cde1e5161 (diff) |
Change back method parameter name spellings
...changing them is deemed incompatible, so best avoid such cosmetic changes.
Change-Id: Id57d38721a4f3b83933fa13c509c20eacb95f903
-rw-r--r-- | udkapi/com/sun/star/beans/XMultiHierarchicalPropertySet.idl | 4 | ||||
-rw-r--r-- | udkapi/com/sun/star/beans/XMultiPropertySet.idl | 12 | ||||
-rw-r--r-- | udkapi/com/sun/star/beans/XMultiPropertyStates.idl | 8 | ||||
-rw-r--r-- | udkapi/com/sun/star/beans/XPropertySetInfo.idl | 4 | ||||
-rw-r--r-- | udkapi/com/sun/star/beans/XPropertyState.idl | 4 | ||||
-rw-r--r-- | udkapi/com/sun/star/registry/XRegistryKey.idl | 16 | ||||
-rw-r--r-- | udkapi/com/sun/star/registry/XSimpleRegistry.idl | 4 | ||||
-rw-r--r-- | udkapi/com/sun/star/script/XDebugging.idl | 4 | ||||
-rw-r--r-- | udkapi/com/sun/star/script/XInvocationAdapterFactory2.idl | 4 | ||||
-rw-r--r-- | udkapi/com/sun/star/script/XLibraryAccess.idl | 4 | ||||
-rw-r--r-- | udkapi/com/sun/star/uno/XAggregation.idl | 6 |
11 files changed, 35 insertions, 35 deletions
diff --git a/udkapi/com/sun/star/beans/XMultiHierarchicalPropertySet.idl b/udkapi/com/sun/star/beans/XMultiHierarchicalPropertySet.idl index e2fbf62d9a43..079e6614175c 100644 --- a/udkapi/com/sun/star/beans/XMultiHierarchicalPropertySet.idl +++ b/udkapi/com/sun/star/beans/XMultiHierarchicalPropertySet.idl @@ -66,7 +66,7 @@ published interface XMultiHierarchicalPropertySet: com::sun::star::uno::XInterfa <p> Unknown properties are ignored. </p> - @param HierarchicalPropertyNames + @param aHierarchicalPropertyNames This parameter specifies the names of the properties. @param Values @@ -93,7 +93,7 @@ published interface XMultiHierarchicalPropertySet: com::sun::star::uno::XInterfa */ - void setHierarchicalPropertyValues( [in] sequence<string> HierarchicalPropertyNames, + void setHierarchicalPropertyValues( [in] sequence<string> aHierarchicalPropertyNames, [in] sequence<any> Values ) raises( com::sun::star::beans::PropertyVetoException, com::sun::star::lang::IllegalArgumentException, diff --git a/udkapi/com/sun/star/beans/XMultiPropertySet.idl b/udkapi/com/sun/star/beans/XMultiPropertySet.idl index 409be2bfbbfe..c49b9a0216b7 100644 --- a/udkapi/com/sun/star/beans/XMultiPropertySet.idl +++ b/udkapi/com/sun/star/beans/XMultiPropertySet.idl @@ -123,26 +123,26 @@ published interface XMultiPropertySet: com::sun::star::uno::XInterface <p>It is suggested to allow multiple registration of the same listener, thus for each time a listener is added, it has to be removed. - @param Listener + @param xListener contains the listener to be removed. @see addPropertiesChangeListener */ void removePropertiesChangeListener( - [in] com::sun::star::beans::XPropertiesChangeListener Listener ); + [in] com::sun::star::beans::XPropertiesChangeListener xListener ); /** fires a sequence of PropertyChangeEvents to the specified listener. - @param PropertyNames + @param aPropertyNames specifies the sorted names of the properties. - @param Listener + @param xListener contains the listener for the property change events. */ - void firePropertiesChangeEvent( [in] sequence<string> PropertyNames, - [in] com::sun::star::beans::XPropertiesChangeListener Listener ); + void firePropertiesChangeEvent( [in] sequence<string> aPropertyNames, + [in] com::sun::star::beans::XPropertiesChangeListener xListener ); }; diff --git a/udkapi/com/sun/star/beans/XMultiPropertyStates.idl b/udkapi/com/sun/star/beans/XMultiPropertyStates.idl index 4e970ad4d4ee..30c4652c1fef 100644 --- a/udkapi/com/sun/star/beans/XMultiPropertyStates.idl +++ b/udkapi/com/sun/star/beans/XMultiPropertyStates.idl @@ -70,14 +70,14 @@ published interface XMultiPropertyStates: com::sun::star::uno::XInterface the change events are fired. If it is a constrained property, you must fire the vetoable event before you change the property value. </p> - @param PropertyNames + @param aPropertyNames specifies the names of the properties. All names must be unique. This sequence must be alphabetically sorted. @throws UnknownPropertyException if one of the properties does not exist. */ - void setPropertiesToDefault( [in] sequence<string> PropertyNames ) + void setPropertiesToDefault( [in] sequence<string> aPropertyNames ) raises( com::sun::star::beans::UnknownPropertyException ); /** @returns @@ -87,7 +87,7 @@ published interface XMultiPropertyStates: com::sun::star::uno::XInterface then the return type at the corresponding position in the sequence returned is `void`. </p> - @param PropertyNames + @param aPropertyNames specifies the names of the properties. All names must be unique. This sequence must be alphabetically sorted. @@ -100,7 +100,7 @@ published interface XMultiPropertyStates: com::sun::star::uno::XInterface com::sun::star::lang::WrappedTargetException. */ sequence<any> getPropertyDefaults( - [in] sequence<string> PropertyNames ) + [in] sequence<string> aPropertyNames ) raises( com::sun::star::beans::UnknownPropertyException, com::sun::star::lang::WrappedTargetException ); }; diff --git a/udkapi/com/sun/star/beans/XPropertySetInfo.idl b/udkapi/com/sun/star/beans/XPropertySetInfo.idl index 7e3f37e3eda3..fb368b21f940 100644 --- a/udkapi/com/sun/star/beans/XPropertySetInfo.idl +++ b/udkapi/com/sun/star/beans/XPropertySetInfo.idl @@ -55,13 +55,13 @@ published interface XPropertySetInfo: com::sun::star::uno::XInterface /** @returns the property with the specified name from the object. - @param Name + @param aName specifies the name of the property. @throws UnknownPropertyException if the property does not exist. */ - com::sun::star::beans::Property getPropertyByName( [in] string Name ) + com::sun::star::beans::Property getPropertyByName( [in] string aName ) raises( com::sun::star::beans::UnknownPropertyException ); diff --git a/udkapi/com/sun/star/beans/XPropertyState.idl b/udkapi/com/sun/star/beans/XPropertyState.idl index 68f8d527c880..fa809164a0ec 100644 --- a/udkapi/com/sun/star/beans/XPropertyState.idl +++ b/udkapi/com/sun/star/beans/XPropertyState.idl @@ -69,14 +69,14 @@ published interface XPropertyState: com::sun::star::uno::XInterface <p>The order of the states is correlating to the order of the given property names. </p> - @param PropertyNames + @param aPropertyName contains the sequence of property names. @throws UnknownPropertyException if one property does not exist. */ sequence<com::sun::star::beans::PropertyState> getPropertyStates( - [in] sequence<string> PropertyNames ) + [in] sequence<string> aPropertyName ) raises( com::sun::star::beans::UnknownPropertyException ); 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 ); diff --git a/udkapi/com/sun/star/script/XDebugging.idl b/udkapi/com/sun/star/script/XDebugging.idl index a220b7c321a3..64cc747d4b60 100644 --- a/udkapi/com/sun/star/script/XDebugging.idl +++ b/udkapi/com/sun/star/script/XDebugging.idl @@ -51,12 +51,12 @@ published interface XDebugging: com::sun::star::uno::XInterface @returns the value of the expression as string. - @param CallStackPos Position in the call stack for which the expression + @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. */ string eval( [in] string aSourceCode, - [in] short CallStackPos ); + [in] short nCallStackPos ); /** 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 be271da7d438..cb58ab8cdf8f 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 Types + @param aTypes 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 > Types ); + [in] sequence< type > aTypes ); }; }; }; }; }; diff --git a/udkapi/com/sun/star/script/XLibraryAccess.idl b/udkapi/com/sun/star/script/XLibraryAccess.idl index f00704293d9e..effbb32a2318 100644 --- a/udkapi/com/sun/star/script/XLibraryAccess.idl +++ b/udkapi/com/sun/star/script/XLibraryAccess.idl @@ -61,12 +61,12 @@ published interface XLibraryAccess: com::sun::star::uno::XInterface /** Get the hole compiled code of a module. - @param ModuleName the full qualified name of a module. + @param aModuleName the full qualified name of a module. (e.g., "UtilLibrary.ModuleDate") @return an empty sequence, if this module is not found or the code is not compiled. */ - sequence<byte> getModuleCode( [in] string ModuleName ); + sequence<byte> getModuleCode( [in] string aModuleName ); /** get the source code of a function. */ diff --git a/udkapi/com/sun/star/uno/XAggregation.idl b/udkapi/com/sun/star/uno/XAggregation.idl index c023f68ee61d..b7a81b98ec29 100644 --- a/udkapi/com/sun/star/uno/XAggregation.idl +++ b/udkapi/com/sun/star/uno/XAggregation.idl @@ -72,10 +72,10 @@ published interface XAggregation: com::sun::star::uno::XInterface XInterface::queryInterface() have to be forwarded. - @param Delegator + @param pDelegator specifies the object which handles the calls to XInterface::queryInterface(). - If <var>xDelegator</var> is NULL, the delegator is + If <var>pDelegator</var> is NULL, the delegator is removed and thus the object becomes its own delegator and has to handle calls to the method XInterface::queryInterface() @@ -83,7 +83,7 @@ published interface XAggregation: com::sun::star::uno::XInterface @see XAggregation::queryAggregation */ - void setDelegator( [in] com::sun::star::uno::XInterface Delegator ); + void setDelegator( [in] com::sun::star::uno::XInterface pDelegator ); /** is similar to XInterface::queryInterface(), but it is to be processed directly without being forwarded to the |