summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt/XTopWindow.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/awt/XTopWindow.idl')
-rw-r--r--offapi/com/sun/star/awt/XTopWindow.idl10
1 files changed, 5 insertions, 5 deletions
diff --git a/offapi/com/sun/star/awt/XTopWindow.idl b/offapi/com/sun/star/awt/XTopWindow.idl
index 54ea83062ed4..05e3b7a99d5c 100644
--- a/offapi/com/sun/star/awt/XTopWindow.idl
+++ b/offapi/com/sun/star/awt/XTopWindow.idl
@@ -38,30 +38,30 @@ published interface XTopWindow: com::sun::star::uno::XInterface
/** adds the specified top window listener to receive window events from
this window.
*/
- [oneway] void addTopWindowListener( [in] com::sun::star::awt::XTopWindowListener xListener );
+ void addTopWindowListener( [in] com::sun::star::awt::XTopWindowListener xListener );
/** removes the specified top window listener so that it no longer
receives window events from this window.
*/
- [oneway] void removeTopWindowListener( [in] com::sun::star::awt::XTopWindowListener xListener );
+ void removeTopWindowListener( [in] com::sun::star::awt::XTopWindowListener xListener );
/** places this window at the top of the stacking order and
shows it in front of any other windows.
*/
- [oneway] void toFront();
+ void toFront();
/** places this window at the bottom of the stacking order and
makes the corresponding adjustment to other visible windows.
*/
- [oneway] void toBack();
+ void toBack();
/** sets a menu bar.
*/
- [oneway] void setMenuBar( [in] com::sun::star::awt::XMenuBar xMenu );
+ void setMenuBar( [in] com::sun::star::awt::XMenuBar xMenu );
};