diff options
author | Eike Rathke <erack@redhat.com> | 2012-01-10 16:44:42 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2012-01-11 13:18:47 +0100 |
commit | b75958473503f7eca096b8843e57a031bbabe0ab (patch) | |
tree | cf55becbf47336b36766f96b66ce72731bb413c3 /i18npool/inc/localedata.hxx | |
parent | 67edfdce616c6dc56395e05a09e098a0460b9313 (diff) |
implemented date acceptance patterns API
Diffstat (limited to 'i18npool/inc/localedata.hxx')
-rw-r--r-- | i18npool/inc/localedata.hxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/i18npool/inc/localedata.hxx b/i18npool/inc/localedata.hxx index a28f1049fab1..2453aa4f6bc5 100644 --- a/i18npool/inc/localedata.hxx +++ b/i18npool/inc/localedata.hxx @@ -32,7 +32,7 @@ #include <comphelper/processfactory.hxx> -#include <com/sun/star/i18n/XLocaleData3.hpp> +#include <com/sun/star/i18n/XLocaleData4.hpp> #include <cppuhelper/implbase2.hxx> // helper for implementations @@ -74,7 +74,7 @@ inline sal_Bool operator ==(const com::sun::star::lang::Locale& l1, const com::s class LocaleData : public cppu::WeakImplHelper2 < - com::sun::star::i18n::XLocaleData3, + com::sun::star::i18n::XLocaleData4, com::sun::star::lang::XServiceInfo > { @@ -105,6 +105,9 @@ public: virtual com::sun::star::uno::Sequence< com::sun::star::uno::Sequence< beans::PropertyValue > > SAL_CALL getContinuousNumberingLevels( const com::sun::star::lang::Locale& rLocale ) throw(com::sun::star::uno::RuntimeException); virtual com::sun::star::uno::Sequence< com::sun::star::uno::Reference< container::XIndexAccess > > SAL_CALL getOutlineNumberingLevels( const com::sun::star::lang::Locale& rLocale ) throw(com::sun::star::uno::RuntimeException); + // XLocaleData4 + virtual com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL getDateAcceptancePatterns( const com::sun::star::lang::Locale& rLocale ) throw(com::sun::star::uno::RuntimeException); + // following methods are used by indexentry service virtual com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL getIndexAlgorithm( const com::sun::star::lang::Locale& rLocale ) throw(com::sun::star::uno::RuntimeException); virtual rtl::OUString SAL_CALL getDefaultIndexAlgorithm( const com::sun::star::lang::Locale& rLocale ) throw(com::sun::star::uno::RuntimeException); |