summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/frame/XModel.idl
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/frame/XModel.idl
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/frame/XModel.idl')
-rw-r--r--offapi/com/sun/star/frame/XModel.idl8
1 files changed, 4 insertions, 4 deletions
diff --git a/offapi/com/sun/star/frame/XModel.idl b/offapi/com/sun/star/frame/XModel.idl
index 0e4af747d96e..87d23123bc26 100644
--- a/offapi/com/sun/star/frame/XModel.idl
+++ b/offapi/com/sun/star/frame/XModel.idl
@@ -106,7 +106,7 @@ published interface XModel: com::sun::star::lang::XComponent
@see XModel::disconnectController()
*/
- [oneway] void connectController( [in] XController Controller );
+ void connectController( [in] XController Controller );
/** is called whenever an existing controller should be deregistered at this model.
@@ -120,7 +120,7 @@ published interface XModel: com::sun::star::lang::XComponent
@see XModel::connectController()
*/
- [oneway] void disconnectController( [in] XController Controller );
+ void disconnectController( [in] XController Controller );
/** suspends some notifications to the controllers which are used
for display updates.
@@ -133,7 +133,7 @@ published interface XModel: com::sun::star::lang::XComponent
for display updates are not broadcasted.
</p>
*/
- [oneway] void lockControllers();
+ void lockControllers();
/** resumes the notifications which were suspended by
<member>XModel::lockControllers()</member>.
@@ -146,7 +146,7 @@ published interface XModel: com::sun::star::lang::XComponent
display updates are not broadcasted.
</p>
*/
- [oneway] void unlockControllers();
+ void unlockControllers();
/** determines if there is at least one lock remaining.