diff options
author | Isamu Mogi <saturday6c@gmail.com> | 2014-05-30 20:18:49 +0900 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-06-01 16:22:12 +0000 |
commit | 4452ac23224cc6fc9c575f1b128dd71f79e12d88 (patch) | |
tree | b6eba110e5439f6734988e502f8f2960e5def7d2 /offapi | |
parent | c84c2e4abad318f1be98d12599787a051dce2b50 (diff) |
Fix hungarian prefix for calendars
Change-Id: I78b3c0a8d32610e86e09ab5ad6da6cc4e0395926
Reviewed-on: https://gerrit.libreoffice.org/9566
Reviewed-by: Thomas Arnhold <thomas@arnhold.org>
Tested-by: Thomas Arnhold <thomas@arnhold.org>
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/i18n/XCalendar.idl | 2 | ||||
-rw-r--r-- | offapi/type_reference/offapi.idl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/offapi/com/sun/star/i18n/XCalendar.idl b/offapi/com/sun/star/i18n/XCalendar.idl index 4dd5ddacb12c..de00fad03536 100644 --- a/offapi/com/sun/star/i18n/XCalendar.idl +++ b/offapi/com/sun/star/i18n/XCalendar.idl @@ -58,7 +58,7 @@ published interface XCalendar : com::sun::star::uno::XInterface passed since start date. The fractional part represents fractions of a day, thus 0.5 means 12 hours. */ - void setDateTime( [in] double nTimeInDays ); + void setDateTime( [in] double fTimeInDays ); /** Get the date/time as an offset to the start of the calendar at diff --git a/offapi/type_reference/offapi.idl b/offapi/type_reference/offapi.idl index fc5b7953095f..43289937f122 100644 --- a/offapi/type_reference/offapi.idl +++ b/offapi/type_reference/offapi.idl @@ -8194,7 +8194,7 @@ module com { ::com::sun::star::i18n::Calendar getLoadedCalendar(); sequence< string > getAllCalendars([in] ::com::sun::star::lang::Locale rLocale); string getUniqueID(); - void setDateTime([in] double nTimeInDays); + void setDateTime([in] double fTimeInDays); double getDateTime(); void setValue([in] short nCalendarFieldIndex, [in] short nValue); short getValue([in] short nCalendarFieldIndex); |