summaryrefslogtreecommitdiff
path: root/testtools
diff options
context:
space:
mode:
authorThorsten Behrens <tbehrens@suse.com>2012-11-29 21:27:57 +0100
committerThorsten Behrens <tbehrens@suse.com>2012-11-30 14:36:35 +0100
commit90eac3e69749a9227c4b6902b1f3cef1e338c6d1 (patch)
tree1e02834a1b94bc06168b50b95590ee547a574927 /testtools
parent28315fb6a40dd0f43990272b11037f60d26afda7 (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 'testtools')
-rw-r--r--testtools/source/bridgetest/idl/bridgetest.idl8
-rw-r--r--testtools/source/bridgetest/idl/com/sun/star/test/performance/XPerformanceTest.idl4
2 files changed, 6 insertions, 6 deletions
diff --git a/testtools/source/bridgetest/idl/bridgetest.idl b/testtools/source/bridgetest/idl/bridgetest.idl
index 0ee5ca527e5a..e3c54e2a184c 100644
--- a/testtools/source/bridgetest/idl/bridgetest.idl
+++ b/testtools/source/bridgetest/idl/bridgetest.idl
@@ -235,7 +235,7 @@ interface XBridgeTestBase : 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,
@@ -375,7 +375,7 @@ interface XBridgeTestBase : com::sun::star::uno::XInterface
@see testSequencePassed
***/
void call( [in] long nCallId, [in] long nWaitMUSEC );
- [oneway] void callOneway( [in] long nCallId, [in] long nWaitMUSEC );
+ void callOneway( [in] long nCallId, [in] long nWaitMUSEC );
boolean sequenceOfCallTestPassed();
/****
@@ -410,8 +410,8 @@ interface XBridgeTest : XBridgeTestBase
* Note that on client side the execption may fly or not. When it flies, it should
* have the proper message and context.
***/
- [oneway] void raiseRuntimeExceptionOneway( [in] string Message,
- [in] com::sun::star::uno::XInterface Context );
+ void raiseRuntimeExceptionOneway( [in] string Message,
+ [in] com::sun::star::uno::XInterface Context );
/**
* raises runtime exception;
diff --git a/testtools/source/bridgetest/idl/com/sun/star/test/performance/XPerformanceTest.idl b/testtools/source/bridgetest/idl/com/sun/star/test/performance/XPerformanceTest.idl
index a5ea7040edb3..7e3ae8e96a95 100644
--- a/testtools/source/bridgetest/idl/com/sun/star/test/performance/XPerformanceTest.idl
+++ b/testtools/source/bridgetest/idl/com/sun/star/test/performance/XPerformanceTest.idl
@@ -75,13 +75,13 @@ published struct ComplexTypes : SimpleTypes
*/
published interface XPerformanceTest : com::sun::star::uno::XInterface
{
- [oneway] void async();
+ void async();
void sync();
ComplexTypes complex_in( [in] ComplexTypes aVal );
ComplexTypes complex_inout( [inout] ComplexTypes aVal );
- [oneway] void complex_oneway( [in] ComplexTypes aVal );
+ void complex_oneway( [in] ComplexTypes aVal );
void complex_noreturn( [in] ComplexTypes aVal );
XPerformanceTest createObject();