summaryrefslogtreecommitdiff
path: root/udkapi
diff options
context:
space:
mode:
Diffstat (limited to 'udkapi')
-rw-r--r--udkapi/com/sun/star/beans/XMultiPropertySet.idl6
-rw-r--r--udkapi/com/sun/star/beans/XPropertiesChangeNotifier.idl4
-rw-r--r--udkapi/com/sun/star/container/XContainer.idl4
-rw-r--r--udkapi/com/sun/star/container/XContainerListener.idl6
-rw-r--r--udkapi/com/sun/star/container/XNamed.idl2
-rw-r--r--udkapi/com/sun/star/io/XDataExporter.idl4
-rw-r--r--udkapi/com/sun/star/io/XDataImporter.idl4
-rw-r--r--udkapi/com/sun/star/io/XDataTransferEventListener.idl4
-rw-r--r--udkapi/com/sun/star/lang/XConnectionPointContainer.idl4
-rw-r--r--udkapi/com/sun/star/script/XAllListener.idl4
-rw-r--r--udkapi/com/sun/star/uno/XInterface.idl4
-rw-r--r--udkapi/com/sun/star/uno/XReference.idl2
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();
};