diff options
author | Eike Rathke <erack@redhat.com> | 2011-11-18 21:26:39 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2011-11-19 16:15:21 +0100 |
commit | a7dbdbf820cdc86f5e4f2d9f49ff3aa320890f78 (patch) | |
tree | 6a5c8998ecdae2655f0339c3d25be13e03259198 /i18npool/inc/calendar_gregorian.hxx | |
parent | 19f607d7839c53f0395db64246de3454ebdbcf37 (diff) |
implement possessive genitive case month names locale data API
Diffstat (limited to 'i18npool/inc/calendar_gregorian.hxx')
-rw-r--r-- | i18npool/inc/calendar_gregorian.hxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/i18npool/inc/calendar_gregorian.hxx b/i18npool/inc/calendar_gregorian.hxx index 1f9cdc8388cb..b95ab22630fb 100644 --- a/i18npool/inc/calendar_gregorian.hxx +++ b/i18npool/inc/calendar_gregorian.hxx @@ -84,6 +84,10 @@ public: // Methods in XExtendedCalendar virtual rtl::OUString SAL_CALL getDisplayString( sal_Int32 nCalendarDisplayCode, sal_Int16 nNativeNumberMode ) throw (com::sun::star::uno::RuntimeException); + // XCalendar3 + virtual Calendar2 SAL_CALL getLoadedCalendar2() throw(com::sun::star::uno::RuntimeException); + virtual com::sun::star::uno::Sequence < CalendarItem > SAL_CALL getGenitiveMonths() throw(com::sun::star::uno::RuntimeException); + //XServiceInfo virtual rtl::OUString SAL_CALL getImplementationName() throw(com::sun::star::uno::RuntimeException); virtual sal_Bool SAL_CALL supportsService(const rtl::OUString& ServiceName) throw(com::sun::star::uno::RuntimeException); @@ -104,7 +108,7 @@ protected: void getValue() throw(com::sun::star::uno::RuntimeException); private: - Calendar aCalendar; + Calendar2 aCalendar; /** Submit fieldSetValue array according to fieldSet. */ void submitFields() throw(com::sun::star::uno::RuntimeException); |