summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/sheet
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/sheet
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/sheet')
-rw-r--r--offapi/com/sun/star/sheet/XCalculatable.idl2
-rw-r--r--offapi/com/sun/star/sheet/XVolatileResult.idl4
2 files changed, 3 insertions, 3 deletions
diff --git a/offapi/com/sun/star/sheet/XCalculatable.idl b/offapi/com/sun/star/sheet/XCalculatable.idl
index 47e8192a1474..47fe689e5d74 100644
--- a/offapi/com/sun/star/sheet/XCalculatable.idl
+++ b/offapi/com/sun/star/sheet/XCalculatable.idl
@@ -67,7 +67,7 @@ published interface XCalculatable: com::sun::star::uno::XInterface
@param bEnabled
<TRUE/> to enable automatic calculation, <FALSE/> to disable.
*/
- [oneway] void enableAutomaticCalculation( [in] boolean bEnabled );
+ void enableAutomaticCalculation( [in] boolean bEnabled );
};
diff --git a/offapi/com/sun/star/sheet/XVolatileResult.idl b/offapi/com/sun/star/sheet/XVolatileResult.idl
index 74bf9bb6ea22..b1d36368a212 100644
--- a/offapi/com/sun/star/sheet/XVolatileResult.idl
+++ b/offapi/com/sun/star/sheet/XVolatileResult.idl
@@ -37,13 +37,13 @@ published interface XVolatileResult: com::sun::star::uno::XInterface
/** adds a listener to be notified when a new value is available.
*/
- [oneway] void addResultListener(
+ void addResultListener(
[in] com::sun::star::sheet::XResultListener aListener );
/** removes the specified listener.
*/
- [oneway] void removeResultListener(
+ void removeResultListener(
[in] com::sun::star::sheet::XResultListener aListener );
};