summaryrefslogtreecommitdiff
path: root/udkapi/com/sun/star/beans/XMultiPropertySet.idl
diff options
context:
space:
mode:
Diffstat (limited to 'udkapi/com/sun/star/beans/XMultiPropertySet.idl')
-rw-r--r--udkapi/com/sun/star/beans/XMultiPropertySet.idl13
1 files changed, 7 insertions, 6 deletions
diff --git a/udkapi/com/sun/star/beans/XMultiPropertySet.idl b/udkapi/com/sun/star/beans/XMultiPropertySet.idl
index 5c7adce43357..409be2bfbbfe 100644
--- a/udkapi/com/sun/star/beans/XMultiPropertySet.idl
+++ b/udkapi/com/sun/star/beans/XMultiPropertySet.idl
@@ -123,25 +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
+ @param Listener
contains the listener to be removed.
@see addPropertiesChangeListener
*/
- void removePropertiesChangeListener( [in] com::sun::star::beans::XPropertiesChangeListener xListener );
+ void removePropertiesChangeListener(
+ [in] com::sun::star::beans::XPropertiesChangeListener Listener );
/** fires a sequence of PropertyChangeEvents to the specified
listener.
- @param aPropertynames
+ @param PropertyNames
specifies the sorted names of the properties.
- @param xListener
+ @param Listener
contains the listener for the property change events.
*/
- void firePropertiesChangeEvent( [in] sequence<string> aPropertyNames,
- [in] com::sun::star::beans::XPropertiesChangeListener xListener );
+ void firePropertiesChangeEvent( [in] sequence<string> PropertyNames,
+ [in] com::sun::star::beans::XPropertiesChangeListener Listener );
};