summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt/XProgressBar.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/awt/XProgressBar.idl')
-rw-r--r--offapi/com/sun/star/awt/XProgressBar.idl8
1 files changed, 4 insertions, 4 deletions
diff --git a/offapi/com/sun/star/awt/XProgressBar.idl b/offapi/com/sun/star/awt/XProgressBar.idl
index c863a3731aa4..f6c4a3deecd6 100644
--- a/offapi/com/sun/star/awt/XProgressBar.idl
+++ b/offapi/com/sun/star/awt/XProgressBar.idl
@@ -35,12 +35,12 @@ published interface XProgressBar: com::sun::star::uno::XInterface
/** sets the foreground color (RGB) of the control.
*/
- [oneway] void setForegroundColor( [in] com::sun::star::util::Color Color );
+ void setForegroundColor( [in] com::sun::star::util::Color Color );
/** sets the background color (RGB) of the control.
*/
- [oneway] void setBackgroundColor( [in] com::sun::star::util::Color Color );
+ void setBackgroundColor( [in] com::sun::star::util::Color Color );
/** sets the minimum and the maximum progress value of the progress bar.
@@ -48,13 +48,13 @@ published interface XProgressBar: com::sun::star::uno::XInterface
<p>If the minimum value is greater than the maximum value, the method
exchanges the values automatically.</p>
*/
- [oneway] void setRange( [in] long Min,
+ void setRange( [in] long Min,
[in] long Max );
/** sets the progress value of the progress bar.
*/
- [oneway] void setValue( [in] long Value );
+ void setValue( [in] long Value );
/** returns the current progress value of the progress bar.