summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/inspection
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 /offapi/com/sun/star/inspection
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 'offapi/com/sun/star/inspection')
-rw-r--r--offapi/com/sun/star/inspection/XPropertyControlContext.idl2
-rw-r--r--offapi/com/sun/star/inspection/XPropertyControlObserver.idl4
2 files changed, 3 insertions, 3 deletions
diff --git a/offapi/com/sun/star/inspection/XPropertyControlContext.idl b/offapi/com/sun/star/inspection/XPropertyControlContext.idl
index fdd88086c193..2fe3753f4f7a 100644
--- a/offapi/com/sun/star/inspection/XPropertyControlContext.idl
+++ b/offapi/com/sun/star/inspection/XPropertyControlContext.idl
@@ -37,7 +37,7 @@ interface XPropertyControlContext : XPropertyControlObserver
@param CurrentControl
denotes the control which initiated the request.
*/
- [oneway] void activateNextControl( [in] XPropertyControl CurrentControl );
+ void activateNextControl( [in] XPropertyControl CurrentControl );
};
diff --git a/offapi/com/sun/star/inspection/XPropertyControlObserver.idl b/offapi/com/sun/star/inspection/XPropertyControlObserver.idl
index b5ec9638674e..3e99e74c5d19 100644
--- a/offapi/com/sun/star/inspection/XPropertyControlObserver.idl
+++ b/offapi/com/sun/star/inspection/XPropertyControlObserver.idl
@@ -41,7 +41,7 @@ interface XPropertyControlObserver
@param Control
denotes the control whose UI representation gained the focus
*/
- [oneway] void focusGained( [in] XPropertyControl Control );
+ void focusGained( [in] XPropertyControl Control );
/** notifies the observer that a certain <type>XPropertyControl</type>'s value
changed.
@@ -51,7 +51,7 @@ interface XPropertyControlObserver
@see XPropertyControl::Value
*/
- [oneway] void valueChanged( [in] XPropertyControl Control );
+ void valueChanged( [in] XPropertyControl Control );
};