summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt/XTabController.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/awt/XTabController.idl')
-rw-r--r--offapi/com/sun/star/awt/XTabController.idl12
1 files changed, 6 insertions, 6 deletions
diff --git a/offapi/com/sun/star/awt/XTabController.idl b/offapi/com/sun/star/awt/XTabController.idl
index 8f514ec9f18c..59b95409904b 100644
--- a/offapi/com/sun/star/awt/XTabController.idl
+++ b/offapi/com/sun/star/awt/XTabController.idl
@@ -39,7 +39,7 @@ published interface XTabController: com::sun::star::uno::XInterface
/** sets the tab controller model.
*/
- [oneway] void setModel( [in] com::sun::star::awt::XTabControllerModel Model );
+ void setModel( [in] com::sun::star::awt::XTabControllerModel Model );
/** returns the tab controller model.
@@ -49,7 +49,7 @@ published interface XTabController: com::sun::star::uno::XInterface
/** set the control container.
*/
- [oneway] void setContainer( [in] com::sun::star::awt::XControlContainer Container );
+ void setContainer( [in] com::sun::star::awt::XControlContainer Container );
/** returns the control container.
@@ -64,24 +64,24 @@ published interface XTabController: com::sun::star::uno::XInterface
/** enables automatic tab order.
*/
- [oneway] void autoTabOrder();
+ void autoTabOrder();
/** activates tab order.
*/
- [oneway] void activateTabOrder();
+ void activateTabOrder();
/** sets the focus to the first control that can be reached with the
TAB key.
*/
- [oneway] void activateFirst();
+ void activateFirst();
/** sets the focus to the last control that can be reached with the
TAB key.
*/
- [oneway] void activateLast();
+ void activateLast();
};