summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt/XTimeField.idl
diff options
context:
space:
mode:
authorLionel Elie Mamane <lionel@mamane.lu>2013-08-04 01:14:22 +0200
committerLionel Elie Mamane <lionel@mamane.lu>2013-08-04 06:51:31 +0000
commit8ee69b0ba13f74d1515fac71df92947eb6328ab1 (patch)
tree5d5e95bb877e5e961cd02eee47011548af94bca1 /offapi/com/sun/star/awt/XTimeField.idl
parentaa5683e18de07c9e86325595ead4574efa685c3a (diff)
fdo#67235 adapt form control code to time nanosecond API change, step 3
Change-Id: I4899c89ee5b2a54c9c05b531ab284365f1558e3d Reviewed-on: https://gerrit.libreoffice.org/5270 Tested-by: Lionel Elie Mamane <lionel@mamane.lu> Reviewed-by: Lionel Elie Mamane <lionel@mamane.lu>
Diffstat (limited to 'offapi/com/sun/star/awt/XTimeField.idl')
-rw-r--r--offapi/com/sun/star/awt/XTimeField.idl21
1 files changed, 11 insertions, 10 deletions
diff --git a/offapi/com/sun/star/awt/XTimeField.idl b/offapi/com/sun/star/awt/XTimeField.idl
index 0e056e85acf2..1c4e02a5347d 100644
--- a/offapi/com/sun/star/awt/XTimeField.idl
+++ b/offapi/com/sun/star/awt/XTimeField.idl
@@ -20,6 +20,7 @@
#define __com_sun_star_awt_XTimeField_idl__
#include <com/sun/star/uno/XInterface.idl>
+#include <com/sun/star/util/Time.idl>
@@ -37,54 +38,54 @@ published interface XTimeField: com::sun::star::uno::XInterface
where HH are hours, MM are minutes, SS are seconds and
nnnnnnnnn are nanoseconds.</p>
*/
- void setTime( [in] hyper Time );
+ void setTime( [in] com::sun::star::util::Time Time );
/** returns the time value which is currently displayed in the time field.
*/
- hyper getTime();
+ com::sun::star::util::Time getTime();
/** sets the minimum time value that can be entered by the user.
*/
- void setMin( [in] hyper Time );
+ void setMin( [in] com::sun::star::util::Time Time );
/** returns the currently set minimum time value that can be entered by
the user.
*/
- hyper getMin();
+ com::sun::star::util::Time getMin();
/** sets the maximum time value that can be entered by the user.
*/
- void setMax( [in] hyper Time );
+ void setMax( [in] com::sun::star::util::Time Time );
/** returns the currently set maximum time value that can be entered by
the user.
*/
- hyper getMax();
+ com::sun::star::util::Time getMax();
/** sets the first value to be set on POS1 key.
*/
- void setFirst( [in] hyper Time );
+ void setFirst( [in] com::sun::star::util::Time Time );
/** returns the currently set first value which is set on POS1 key.
*/
- hyper getFirst();
+ com::sun::star::util::Time getFirst();
/** sets the last value to be set on END key.
*/
- void setLast( [in] hyper Time );
+ void setLast( [in] com::sun::star::util::Time Time );
/** returns the currently set last value which is set on END key.
*/
- hyper getLast();
+ com::sun::star::util::Time getLast();
/** sets an empty value for the time.