summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt/XSpinListener.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/awt/XSpinListener.idl')
-rw-r--r--offapi/com/sun/star/awt/XSpinListener.idl8
1 files changed, 4 insertions, 4 deletions
diff --git a/offapi/com/sun/star/awt/XSpinListener.idl b/offapi/com/sun/star/awt/XSpinListener.idl
index 6fcbc626e7e1..0e5295d3e423 100644
--- a/offapi/com/sun/star/awt/XSpinListener.idl
+++ b/offapi/com/sun/star/awt/XSpinListener.idl
@@ -35,22 +35,22 @@ published interface XSpinListener: com::sun::star::lang::XEventListener
/** is invoked when the spin field is spun up.
*/
- [oneway] void up( [in] com::sun::star::awt::SpinEvent rEvent );
+ void up( [in] com::sun::star::awt::SpinEvent rEvent );
/** is invoked when the spin field is spun down.
*/
- [oneway] void down( [in] com::sun::star::awt::SpinEvent rEvent );
+ void down( [in] com::sun::star::awt::SpinEvent rEvent );
/** is invoked when the spin field is set to the lower value.
*/
- [oneway] void first( [in] com::sun::star::awt::SpinEvent rEvent );
+ void first( [in] com::sun::star::awt::SpinEvent rEvent );
/** is invoked when the spin field is set to the upper value.
*/
- [oneway] void last( [in] com::sun::star::awt::SpinEvent rEvent );
+ void last( [in] com::sun::star::awt::SpinEvent rEvent );
};