summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt/XNumericField.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/awt/XNumericField.idl')
-rw-r--r--offapi/com/sun/star/awt/XNumericField.idl16
1 files changed, 8 insertions, 8 deletions
diff --git a/offapi/com/sun/star/awt/XNumericField.idl b/offapi/com/sun/star/awt/XNumericField.idl
index 26932beb6e02..24e5afc660c6 100644
--- a/offapi/com/sun/star/awt/XNumericField.idl
+++ b/offapi/com/sun/star/awt/XNumericField.idl
@@ -33,7 +33,7 @@ published interface XNumericField: com::sun::star::uno::XInterface
/** sets the value which is displayed in the numeric field.
*/
- [oneway] void setValue( [in] double Value );
+ void setValue( [in] double Value );
/** returns the value which is currently displayed in the numeric field.
@@ -43,7 +43,7 @@ published interface XNumericField: com::sun::star::uno::XInterface
/** sets the minimum value that can be entered by the user.
*/
- [oneway] void setMin( [in] double Value );
+ void setMin( [in] double Value );
/** returns the currently set minimum value that can be entered by the
@@ -54,7 +54,7 @@ published interface XNumericField: com::sun::star::uno::XInterface
/** sets the maximum value that can be entered by the user.
*/
- [oneway] void setMax( [in] double Value );
+ void setMax( [in] double Value );
/** returns the currently set maximum value that can be entered by the
@@ -65,7 +65,7 @@ published interface XNumericField: com::sun::star::uno::XInterface
/** sets the first value to be set on POS1 key.
*/
- [oneway] void setFirst( [in] double Value );
+ void setFirst( [in] double Value );
/** returns the currently set first value which is set on POS1 key.
@@ -75,7 +75,7 @@ published interface XNumericField: com::sun::star::uno::XInterface
/** sets the last value to be set on END key.
*/
- [oneway] void setLast( [in] double Value );
+ void setLast( [in] double Value );
/** returns the currently set last value which is set on END key.
@@ -85,7 +85,7 @@ published interface XNumericField: com::sun::star::uno::XInterface
/** sets the increment value for the spin button.
*/
- [oneway] void setSpinSize( [in] double Value );
+ void setSpinSize( [in] double Value );
/** returns the currently set increment value for the spin button.
@@ -95,7 +95,7 @@ published interface XNumericField: com::sun::star::uno::XInterface
/** sets the number of decimals.
*/
- [oneway] void setDecimalDigits( [in] short nDigits );
+ void setDecimalDigits( [in] short nDigits );
/** returns the currently set number of decimals.
@@ -105,7 +105,7 @@ published interface XNumericField: com::sun::star::uno::XInterface
/** determines if the format is checked during user input.
*/
- [oneway] void setStrictFormat( [in] boolean bStrict );
+ void setStrictFormat( [in] boolean bStrict );
/** returns whether the format is currently checked during user input.