summaryrefslogtreecommitdiff
path: root/bridges
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 /bridges
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 'bridges')
-rw-r--r--bridges/test/test_bridge.idl4
1 files changed, 2 insertions, 2 deletions
diff --git a/bridges/test/test_bridge.idl b/bridges/test/test_bridge.idl
index 33bff9f9ca86..0e8b193d32a0 100644
--- a/bridges/test/test_bridge.idl
+++ b/bridges/test/test_bridge.idl
@@ -48,11 +48,11 @@ exception TestBridgeException : com::sun::star::uno::Exception
interface XCallMe : com::sun::star::uno::XInterface
{
void call( [in] string s , [in] long nToDo ) raises( TestBridgeException );
- [oneway] void callOneway( [in] string s , [in] long nToDo );
+ void callOneway( [in] string s , [in] long nToDo );
[attribute] string sAttribute;
void callAgain( [in] XCallMe callAgain, [in] long nToCall );
TestTypes transport( [in] TestTypes types );
- [oneway] void drawLine( [in] long x1 , [in] long y1, [in] long x2, [in] long y2 );
+ void drawLine( [in] long x1 , [in] long y1, [in] long x2, [in] long y2 );
};
interface XInterfaceTest : com::sun::star::uno::XInterface