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 /include | |
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 'include')
-rw-r--r-- | include/unotools/calendarwrapper.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/unotools/calendarwrapper.hxx b/include/unotools/calendarwrapper.hxx index 389f13805c45..a03f9068b282 100644 --- a/include/unotools/calendarwrapper.hxx +++ b/include/unotools/calendarwrapper.hxx @@ -58,11 +58,11 @@ public: ::com::sun::star::uno::Sequence< OUString > getAllCalendars( const ::com::sun::star::lang::Locale& rLocale ) const; OUString getUniqueID() const; /// set UTC date/time - void setDateTime( double nTimeInDays ); + void setDateTime( double fTimeInDays ); /// get UTC date/time double getDateTime() const; /// convenience method to set local date/time - void setLocalDateTime( double nTimeInDays ); + void setLocalDateTime( double fTimeInDays ); /// convenience method to get local date/time double getLocalDateTime() const; |