summaryrefslogtreecommitdiff
path: root/stoc
diff options
context:
space:
mode:
Diffstat (limited to 'stoc')
-rw-r--r--stoc/test/language_binding.idl2
-rw-r--r--stoc/test/registry_tdprovider/types.idl2
-rw-r--r--stoc/test/testcorefl.idl2
-rw-r--r--stoc/test/testintrosp.idl4
4 files changed, 5 insertions, 5 deletions
diff --git a/stoc/test/language_binding.idl b/stoc/test/language_binding.idl
index 20f6c73ddd3d..e9ef5f8b99d1 100644
--- a/stoc/test/language_binding.idl
+++ b/stoc/test/language_binding.idl
@@ -80,7 +80,7 @@ interface XLBTestBase : com::sun::star::uno::XInterface
/**
* in parameter test, tests by calls reference also (complex types)
*/
- [oneway] void setValues( [in] boolean bBool, [in] char cChar, [in] byte nByte,
+ void setValues( [in] boolean bBool, [in] char cChar, [in] byte nByte,
[in] short nShort, [in] unsigned short nUShort,
[in] long nLong, [in] unsigned long nULong,
[in] hyper nHyper, [in] unsigned hyper nUHyper,
diff --git a/stoc/test/registry_tdprovider/types.idl b/stoc/test/registry_tdprovider/types.idl
index dedd0b904c57..ea3339d9628a 100644
--- a/stoc/test/registry_tdprovider/types.idl
+++ b/stoc/test/registry_tdprovider/types.idl
@@ -52,7 +52,7 @@ published interface XTest1 {
void f1([out] any p) raises (com::sun::star::uno::RuntimeException);
- [oneway] void f2();
+ void f2();
[attribute, bound] short a1;
diff --git a/stoc/test/testcorefl.idl b/stoc/test/testcorefl.idl
index 21e575569f31..03605a5c7d56 100644
--- a/stoc/test/testcorefl.idl
+++ b/stoc/test/testcorefl.idl
@@ -80,7 +80,7 @@ module ModuleC
interface XInterfaceA : com::sun::star::uno::XInterface
{
void methodA();
- [oneway] void methodB([in] short aShort);
+ void methodB([in] short aShort);
sequence<ModuleA::StructB> methodC([in] ModuleA::StructC aStructC, [inout] ModuleA::StructA aStructA);
};
diff --git a/stoc/test/testintrosp.idl b/stoc/test/testintrosp.idl
index 13772a669272..0ff92e10cf8a 100644
--- a/stoc/test/testintrosp.idl
+++ b/stoc/test/testintrosp.idl
@@ -193,13 +193,13 @@ interface XIntroTest: com::sun::star::uno::XInterface
//-------------------------------------------------------------------------
/**Add a PropertiesChangeListener
*/
- [oneway] void addPropertiesChangeListener( [in] sequence< string > PropertyNames,
+ void addPropertiesChangeListener( [in] sequence< string > PropertyNames,
[in] com::sun::star::beans::XPropertiesChangeListener Listener );
//-------------------------------------------------------------------------
/**Remove a PropertiesChangeListener
*/
- [oneway] void removePropertiesChangeListener( [in] com::sun::star::beans::XPropertiesChangeListener Listener );
+ void removePropertiesChangeListener( [in] com::sun::star::beans::XPropertiesChangeListener Listener );
};