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 | |
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')
-rw-r--r-- | udkapi/com/sun/star/beans/XMultiPropertySet.idl | 6 | ||||
-rw-r--r-- | udkapi/com/sun/star/beans/XPropertiesChangeNotifier.idl | 4 | ||||
-rw-r--r-- | udkapi/com/sun/star/container/XContainer.idl | 4 | ||||
-rw-r--r-- | udkapi/com/sun/star/container/XContainerListener.idl | 6 | ||||
-rw-r--r-- | udkapi/com/sun/star/container/XNamed.idl | 2 | ||||
-rw-r--r-- | udkapi/com/sun/star/io/XDataExporter.idl | 4 | ||||
-rw-r--r-- | udkapi/com/sun/star/io/XDataImporter.idl | 4 | ||||
-rw-r--r-- | udkapi/com/sun/star/io/XDataTransferEventListener.idl | 4 | ||||
-rw-r--r-- | udkapi/com/sun/star/lang/XConnectionPointContainer.idl | 4 | ||||
-rw-r--r-- | udkapi/com/sun/star/script/XAllListener.idl | 4 | ||||
-rw-r--r-- | udkapi/com/sun/star/uno/XInterface.idl | 4 | ||||
-rw-r--r-- | udkapi/com/sun/star/uno/XReference.idl | 2 |
12 files changed, 24 insertions, 24 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 ); }; diff --git a/udkapi/com/sun/star/container/XContainer.idl b/udkapi/com/sun/star/container/XContainer.idl index e6ccdc53ea9b..364af09e287d 100644 --- a/udkapi/com/sun/star/container/XContainer.idl +++ b/udkapi/com/sun/star/container/XContainer.idl @@ -55,7 +55,7 @@ published interface XContainer: com::sun::star::uno::XInterface @see XContainerListener */ - [oneway] void addContainerListener( [in] com::sun::star::container::XContainerListener xListener ); + void addContainerListener( [in] com::sun::star::container::XContainerListener xListener ); /** removes the specified listener so it does not receive @@ -66,7 +66,7 @@ published interface XContainer: com::sun::star::uno::XInterface @see XContainerListener */ - [oneway] void removeContainerListener( [in] com::sun::star::container::XContainerListener xListener ); + void removeContainerListener( [in] com::sun::star::container::XContainerListener xListener ); }; diff --git a/udkapi/com/sun/star/container/XContainerListener.idl b/udkapi/com/sun/star/container/XContainerListener.idl index e9b259b11159..8323292e8691 100644 --- a/udkapi/com/sun/star/container/XContainerListener.idl +++ b/udkapi/com/sun/star/container/XContainerListener.idl @@ -35,17 +35,17 @@ published interface XContainerListener: com::sun::star::lang::XEventListener /** is invoked when a container has inserted an element. */ - [oneway] void elementInserted( [in] com::sun::star::container::ContainerEvent Event ); + void elementInserted( [in] com::sun::star::container::ContainerEvent Event ); /** is invoked when a container has removed an element. */ - [oneway] void elementRemoved( [in] com::sun::star::container::ContainerEvent Event ); + void elementRemoved( [in] com::sun::star::container::ContainerEvent Event ); /** is invoked when a container has replaced an element. */ - [oneway] void elementReplaced( [in] com::sun::star::container::ContainerEvent Event ); + void elementReplaced( [in] com::sun::star::container::ContainerEvent Event ); }; diff --git a/udkapi/com/sun/star/container/XNamed.idl b/udkapi/com/sun/star/container/XNamed.idl index 6fa7ba9a62ea..e1e4af3b61d8 100644 --- a/udkapi/com/sun/star/container/XNamed.idl +++ b/udkapi/com/sun/star/container/XNamed.idl @@ -40,7 +40,7 @@ published interface XNamed: com::sun::star::uno::XInterface /** sets the programmatic name of the object. */ - [oneway] void setName( [in] string aName ); + void setName( [in] string aName ); }; diff --git a/udkapi/com/sun/star/io/XDataExporter.idl b/udkapi/com/sun/star/io/XDataExporter.idl index 1eda44f79140..99a68a009690 100644 --- a/udkapi/com/sun/star/io/XDataExporter.idl +++ b/udkapi/com/sun/star/io/XDataExporter.idl @@ -44,7 +44,7 @@ published interface XDataExporter: com::sun::star::uno::XInterface // DocMerge from xml: method com::sun::star::io::XDataExporter::exportData /** exports data for a component into an output stream. */ - [oneway] void exportData( [in] com::sun::star::io::XOutputStream aOutputStream, + void exportData( [in] com::sun::star::io::XOutputStream aOutputStream, [in] com::sun::star::lang::XComponent Component, [in] com::sun::star::io::XDataTransferEventListener aListener ); @@ -52,7 +52,7 @@ published interface XDataExporter: com::sun::star::uno::XInterface // DocMerge from xml: method com::sun::star::io::XDataExporter::cancel /** cancels the export process. */ - [oneway] void cancel(); + void cancel(); }; diff --git a/udkapi/com/sun/star/io/XDataImporter.idl b/udkapi/com/sun/star/io/XDataImporter.idl index 273061230ee5..b5938b0975eb 100644 --- a/udkapi/com/sun/star/io/XDataImporter.idl +++ b/udkapi/com/sun/star/io/XDataImporter.idl @@ -43,7 +43,7 @@ published interface XDataImporter: com::sun::star::uno::XInterface // DocMerge from xml: method com::sun::star::io::XDataImporter::importData /** imports data for a component from an active data source. */ - [oneway] void importData( [in] com::sun::star::io::XActiveDataSource aActiveSource, + void importData( [in] com::sun::star::io::XActiveDataSource aActiveSource, [in] com::sun::star::lang::XComponent Component, [in] com::sun::star::io::XDataTransferEventListener aListener ); @@ -51,7 +51,7 @@ published interface XDataImporter: com::sun::star::uno::XInterface // DocMerge from xml: method com::sun::star::io::XDataImporter::cancel /** cancels the import process. */ - [oneway] void cancel(); + void cancel(); }; diff --git a/udkapi/com/sun/star/io/XDataTransferEventListener.idl b/udkapi/com/sun/star/io/XDataTransferEventListener.idl index b2590ba9e747..15c7b97991ce 100644 --- a/udkapi/com/sun/star/io/XDataTransferEventListener.idl +++ b/udkapi/com/sun/star/io/XDataTransferEventListener.idl @@ -37,13 +37,13 @@ published interface XDataTransferEventListener: com::sun::star::lang::XEventList // DocMerge from xml: method com::sun::star::io::XDataTransferEventListener::finished /** is called when an import or export process has finished. */ - [oneway] void finished( [in] com::sun::star::io::DataTransferEvent aEvent ); + void finished( [in] com::sun::star::io::DataTransferEvent aEvent ); // DocMerge from xml: method com::sun::star::io::XDataTransferEventListener::cancelled /** is called when an import or export process has been cancelled. */ - [oneway] void cancelled( [in] com::sun::star::io::DataTransferEvent aEvent ); + void cancelled( [in] com::sun::star::io::DataTransferEvent aEvent ); }; diff --git a/udkapi/com/sun/star/lang/XConnectionPointContainer.idl b/udkapi/com/sun/star/lang/XConnectionPointContainer.idl index 8ac912d2ceec..54ca701e989d 100644 --- a/udkapi/com/sun/star/lang/XConnectionPointContainer.idl +++ b/udkapi/com/sun/star/lang/XConnectionPointContainer.idl @@ -77,7 +77,7 @@ published interface XConnectionPointContainer: com::sun::star::uno::XInterface @see XConnectionPoint::advise */ - [oneway] void advise( [in] type aType, + void advise( [in] type aType, [in] com::sun::star::uno::XInterface xListener ); @@ -87,7 +87,7 @@ published interface XConnectionPointContainer: com::sun::star::uno::XInterface @see XConnectionPoint::unadvise */ - [oneway] void unadvise( [in] type aType, + void unadvise( [in] type aType, [in] com::sun::star::uno::XInterface xListener ); }; diff --git a/udkapi/com/sun/star/script/XAllListener.idl b/udkapi/com/sun/star/script/XAllListener.idl index 2072b39c43e8..c77ad8f0405c 100644 --- a/udkapi/com/sun/star/script/XAllListener.idl +++ b/udkapi/com/sun/star/script/XAllListener.idl @@ -39,12 +39,12 @@ published interface XAllListener: com::sun::star::lang::XEventListener { /** gets called when an event occurs at the object. */ - [oneway] void firing( [in] com::sun::star::script::AllEventObject iaEvent ); + void firing( [in] com::sun::star::script::AllEventObject iaEvent ); /** gets called when a "vetoable event" occurs at the object. <p>That happens when the listener method raises an exception, - has a return value declared, or is not "oneway".</p> + or has a return value declared.</p> */ any approveFiring( [in] com::sun::star::script::AllEventObject aEvent ) raises( com::sun::star::reflection::InvocationTargetException ); diff --git a/udkapi/com/sun/star/uno/XInterface.idl b/udkapi/com/sun/star/uno/XInterface.idl index 4e8f41f39b3a..231f11956782 100644 --- a/udkapi/com/sun/star/uno/XInterface.idl +++ b/udkapi/com/sun/star/uno/XInterface.idl @@ -99,7 +99,7 @@ published interface XInterface <p> Every call to acquire must be followed by a corresponding call to release some time later, which may eventually lead to the destruction of the object. */ - [oneway] void acquire(); + void acquire(); // DocMerge from xml: method com::sun::star::uno::XInterface::release @@ -108,7 +108,7 @@ published interface XInterface <p>Calling release() on the object is often called releasing or clearing the reference to an object. */ - [oneway] void release(); + void release(); }; diff --git a/udkapi/com/sun/star/uno/XReference.idl b/udkapi/com/sun/star/uno/XReference.idl index e8416bc8b0d0..2d17fad4ca8f 100644 --- a/udkapi/com/sun/star/uno/XReference.idl +++ b/udkapi/com/sun/star/uno/XReference.idl @@ -44,7 +44,7 @@ published interface XReference: com::sun::star::uno::XInterface Otherwise, the adapted object will be destroyed, but the adapter will be alive.</p> */ - [oneway] void dispose(); + void dispose(); }; |