summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt/XControlContainer.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/awt/XControlContainer.idl')
-rw-r--r--offapi/com/sun/star/awt/XControlContainer.idl6
1 files changed, 3 insertions, 3 deletions
diff --git a/offapi/com/sun/star/awt/XControlContainer.idl b/offapi/com/sun/star/awt/XControlContainer.idl
index 62289a7cd90c..9667a7b6007e 100644
--- a/offapi/com/sun/star/awt/XControlContainer.idl
+++ b/offapi/com/sun/star/awt/XControlContainer.idl
@@ -36,7 +36,7 @@ published interface XControlContainer: com::sun::star::uno::XInterface
/** sets the status text in the status bar of the container.
*/
- [oneway] void setStatusText( [in] string StatusText );
+ void setStatusText( [in] string StatusText );
/** returns all controls.
@@ -51,13 +51,13 @@ published interface XControlContainer: com::sun::star::uno::XInterface
/** adds the given control with the specified name to the container.
*/
- [oneway] void addControl( [in] string Name,
+ void addControl( [in] string Name,
[in] com::sun::star::awt::XControl Control );
/** removes the given control from the container.
*/
- [oneway] void removeControl( [in] com::sun::star::awt::XControl Control );
+ void removeControl( [in] com::sun::star::awt::XControl Control );
};