diff options
author | Thorsten Behrens <tbehrens@suse.com> | 2012-11-29 21:27:57 +0100 |
---|---|---|
committer | Thorsten Behrens <tbehrens@suse.com> | 2012-11-30 14:36:35 +0100 |
commit | 90eac3e69749a9227c4b6902b1f3cef1e338c6d1 (patch) | |
tree | 1e02834a1b94bc06168b50b95590ee547a574927 /udkapi/com/sun/star/beans | |
parent | 28315fb6a40dd0f43990272b11037f60d26afda7 (diff) |
API CHANGE remove [oneway] method attributes
Remove non-functional and broken [oneway] attributes from all idl
files. Change idl compiler to no longer digest such idl.
Change-Id: Ie14c5012beccb6242d7cd592d434a88091b695d1
Diffstat (limited to 'udkapi/com/sun/star/beans')
-rw-r--r-- | udkapi/com/sun/star/beans/XMultiPropertySet.idl | 6 | ||||
-rw-r--r-- | udkapi/com/sun/star/beans/XPropertiesChangeNotifier.idl | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/udkapi/com/sun/star/beans/XMultiPropertySet.idl b/udkapi/com/sun/star/beans/XMultiPropertySet.idl index 3f00886af8aa..a32710bf54ca 100644 --- a/udkapi/com/sun/star/beans/XMultiPropertySet.idl +++ b/udkapi/com/sun/star/beans/XMultiPropertySet.idl @@ -112,7 +112,7 @@ published interface XMultiPropertySet: com::sun::star::uno::XInterface @see removePropertiesChangeListener */ - [oneway] void addPropertiesChangeListener( [in] sequence<string> aPropertyNames, + void addPropertiesChangeListener( [in] sequence<string> aPropertyNames, [in] com::sun::star::beans::XPropertiesChangeListener xListener ); @@ -128,7 +128,7 @@ published interface XMultiPropertySet: com::sun::star::uno::XInterface @see addPropertiesChangeListener */ - [oneway] void removePropertiesChangeListener( [in] com::sun::star::beans::XPropertiesChangeListener xListener ); + void removePropertiesChangeListener( [in] com::sun::star::beans::XPropertiesChangeListener xListener ); /** fires a sequence of <type>PropertyChangeEvent</type>s to the specified @@ -140,7 +140,7 @@ published interface XMultiPropertySet: com::sun::star::uno::XInterface @param xListener contains the listener for the property change events. */ - [oneway] void firePropertiesChangeEvent( [in] sequence<string> aPropertyNames, + void firePropertiesChangeEvent( [in] sequence<string> aPropertyNames, [in] com::sun::star::beans::XPropertiesChangeListener xListener ); }; diff --git a/udkapi/com/sun/star/beans/XPropertiesChangeNotifier.idl b/udkapi/com/sun/star/beans/XPropertiesChangeNotifier.idl index 87853b00a7d9..575e57118a73 100644 --- a/udkapi/com/sun/star/beans/XPropertiesChangeNotifier.idl +++ b/udkapi/com/sun/star/beans/XPropertiesChangeNotifier.idl @@ -35,7 +35,7 @@ published interface XPropertiesChangeNotifier: com::sun::star::uno::XInterface /** adds an <type>XPropertiesChangeListener</type> to the specified properties with the specified names. */ - [oneway] void addPropertiesChangeListener( + void addPropertiesChangeListener( [in] sequence<string> PropertyNames, [in] com::sun::star::beans::XPropertiesChangeListener Listener ); @@ -43,7 +43,7 @@ published interface XPropertiesChangeNotifier: com::sun::star::uno::XInterface /** removes an <type>XPropertiesChangeListener</type> from the listener list. */ - [oneway] void removePropertiesChangeListener( + void removePropertiesChangeListener( [in] sequence<string> PropertyNames, [in] com::sun::star::beans::XPropertiesChangeListener Listener ); }; |