diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-06-02 16:15:49 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-06-02 16:15:49 +0200 |
commit | 226e242bb7bd087e9a4946a2eef50ff3ff930d68 (patch) | |
tree | 23d96425451dabd102c5575099a8c466d1bb3feb /offapi | |
parent | 67577e8f6e616efd40b1d6ca842e615a02723f04 (diff) |
Revert needless modification of published UNO API
This reverts the part of 4452ac23224cc6fc9c575f1b128dd71f79e12d88 "Fix hungarian
prefix for calendars" that needlessly changed a method parameter name in
published UNO API, which is, strictly speaking, incompatible.
Change-Id: Icd1ee34d200ebab01010d5dd35a1b19c47bfc05a
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 de00fad03536..4dd5ddacb12c 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 fTimeInDays ); + void setDateTime( [in] double nTimeInDays ); /** 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 43289937f122..fc5b7953095f 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 fTimeInDays); + void setDateTime([in] double nTimeInDays); double getDateTime(); void setValue([in] short nCalendarFieldIndex, [in] short nValue); short getValue([in] short nCalendarFieldIndex); |