summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/task
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/task
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/task')
-rw-r--r--offapi/com/sun/star/task/XJobExecutor.idl2
-rw-r--r--offapi/com/sun/star/task/XStatusIndicator.idl10
2 files changed, 6 insertions, 6 deletions
diff --git a/offapi/com/sun/star/task/XJobExecutor.idl b/offapi/com/sun/star/task/XJobExecutor.idl
index c72958375b3a..6cd3a093db66 100644
--- a/offapi/com/sun/star/task/XJobExecutor.idl
+++ b/offapi/com/sun/star/task/XJobExecutor.idl
@@ -53,7 +53,7 @@ published interface XJobExecutor : com::sun::star::uno::XInterface
@param Event
describe the event for which jobs can be registered and should be started
*/
- [oneway] void trigger( [in] string Event );
+ void trigger( [in] string Event );
};
}; }; }; };
diff --git a/offapi/com/sun/star/task/XStatusIndicator.idl b/offapi/com/sun/star/task/XStatusIndicator.idl
index 1743859fe06b..6c6b9b26aeed 100644
--- a/offapi/com/sun/star/task/XStatusIndicator.idl
+++ b/offapi/com/sun/star/task/XStatusIndicator.idl
@@ -53,7 +53,7 @@ published interface XStatusIndicator: com::sun::star::uno::XInterface
means the maximum value of the progress which can be set by
calling <member>XStatusIndicator::setValue()</member>.
*/
- [oneway] void start(
+ void start(
[in] string Text,
[in] long Range);
@@ -69,7 +69,7 @@ published interface XStatusIndicator: com::sun::star::uno::XInterface
The instance must be gone by using ref count or disposing.
</p>
*/
- [oneway] void end();
+ void end();
/** update progress description
@@ -82,7 +82,7 @@ published interface XStatusIndicator: com::sun::star::uno::XInterface
@param Text
new value for progress description which should be shown now
*/
- [oneway] void setText( [in] string Text );
+ void setText( [in] string Text );
/** update progress value
@@ -96,7 +96,7 @@ published interface XStatusIndicator: com::sun::star::uno::XInterface
Must fit the range [0..Range] which was set during
<member>XStatusIndicator::start()</member>.
*/
- [oneway] void setValue( [in] long Value );
+ void setValue( [in] long Value );
/** clear progress value and description
@@ -105,7 +105,7 @@ published interface XStatusIndicator: com::sun::star::uno::XInterface
Stopped indicators must ignore this call.
</p>
*/
- [oneway] void reset();
+ void reset();
};
}; }; }; };