summaryrefslogtreecommitdiff
path: root/offapi/com
diff options
context:
space:
mode:
authorLionel Elie Mamane <lionel@mamane.lu>2013-07-28 16:08:26 +0200
committerLionel Elie Mamane <lionel@mamane.lu>2013-08-02 11:35:57 +0000
commited904af8665f6f7590fedd4ad608018f78c686c1 (patch)
tree2590bb19a2621feed3b2b490a91342a382621d0a /offapi/com
parent784cfa382be438240dfc936b7551c5012aada9ae (diff)
fdo#67235 adapt form control code to time nanosecond API change
Conflicts: offapi/type_reference/offapi.rdb Change-Id: If68ecf0691919d71d06d7b97d46db115013f9805 Reviewed-on: https://gerrit.libreoffice.org/5149 Reviewed-by: Lionel Elie Mamane <lionel@mamane.lu> Tested-by: Lionel Elie Mamane <lionel@mamane.lu>
Diffstat (limited to 'offapi/com')
-rw-r--r--offapi/com/sun/star/awt/XTimeField.idl26
1 files changed, 13 insertions, 13 deletions
diff --git a/offapi/com/sun/star/awt/XTimeField.idl b/offapi/com/sun/star/awt/XTimeField.idl
index 73cb16a72873..0e056e85acf2 100644
--- a/offapi/com/sun/star/awt/XTimeField.idl
+++ b/offapi/com/sun/star/awt/XTimeField.idl
@@ -33,58 +33,58 @@ published interface XTimeField: com::sun::star::uno::XInterface
/** sets the time value which is displayed in the time field.
- <p>The time value must be specified in the format HHMMSShh,
- where HH are hours, MM are minutes, SS are seconds and hh are
- hundredth seconds.</p>
+ <p>The time value must be specified in the format HHMMSSnnnnnnnnn,
+ where HH are hours, MM are minutes, SS are seconds and
+ nnnnnnnnn are nanoseconds.</p>
*/
- void setTime( [in] long Time );
+ void setTime( [in] hyper Time );
/** returns the time value which is currently displayed in the time field.
*/
- long getTime();
+ hyper getTime();
/** sets the minimum time value that can be entered by the user.
*/
- void setMin( [in] long Time );
+ void setMin( [in] hyper Time );
/** returns the currently set minimum time value that can be entered by
the user.
*/
- long getMin();
+ hyper getMin();
/** sets the maximum time value that can be entered by the user.
*/
- void setMax( [in] long Time );
+ void setMax( [in] hyper Time );
/** returns the currently set maximum time value that can be entered by
the user.
*/
- long getMax();
+ hyper getMax();
/** sets the first value to be set on POS1 key.
*/
- void setFirst( [in] long Time );
+ void setFirst( [in] hyper Time );
/** returns the currently set first value which is set on POS1 key.
*/
- long getFirst();
+ hyper getFirst();
/** sets the last value to be set on END key.
*/
- void setLast( [in] long Time );
+ void setLast( [in] hyper Time );
/** returns the currently set last value which is set on END key.
*/
- long getLast();
+ hyper getLast();
/** sets an empty value for the time.