summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt/XButton.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/awt/XButton.idl')
-rw-r--r--offapi/com/sun/star/awt/XButton.idl8
1 files changed, 4 insertions, 4 deletions
diff --git a/offapi/com/sun/star/awt/XButton.idl b/offapi/com/sun/star/awt/XButton.idl
index 16d62373e379..24dfa73846b4 100644
--- a/offapi/com/sun/star/awt/XButton.idl
+++ b/offapi/com/sun/star/awt/XButton.idl
@@ -35,22 +35,22 @@ published interface XButton: com::sun::star::uno::XInterface
/** registers an event handler for button action events.
*/
- [oneway] void addActionListener( [in] com::sun::star::awt::XActionListener l );
+ void addActionListener( [in] com::sun::star::awt::XActionListener l );
/** unregisters an event handler for button action events.
*/
- [oneway] void removeActionListener( [in] com::sun::star::awt::XActionListener l );
+ void removeActionListener( [in] com::sun::star::awt::XActionListener l );
/** sets the label of the button.
*/
- [oneway] void setLabel( [in] string Label );
+ void setLabel( [in] string Label );
/** sets a command string for pushing the button.
*/
- [oneway] void setActionCommand( [in] string Command );
+ void setActionCommand( [in] string Command );
};