diff options
author | Matúš Kukan <matus.kukan@collabora.com> | 2014-01-27 08:22:28 +0100 |
---|---|---|
committer | Matúš Kukan <matus.kukan@collabora.com> | 2014-01-27 08:42:54 +0100 |
commit | a4f17c00b16f5a983cd91ac5d2c43454f1775931 (patch) | |
tree | 6f57bd7d49e8a9a60e8ec7c2478dc29aca2da328 /i18npool/source/breakiterator | |
parent | c492e5156b20c98ee662b9b5f6ad874c51b95bf9 (diff) |
i18npool: Constructor feature for few more implementations.
Change-Id: I018bbe39a30582f51cdd620b3bf3240456b7bd65
Diffstat (limited to 'i18npool/source/breakiterator')
-rw-r--r-- | i18npool/source/breakiterator/breakiterator_unicode.cxx | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/i18npool/source/breakiterator/breakiterator_unicode.cxx b/i18npool/source/breakiterator/breakiterator_unicode.cxx index 08c067741bfc..e46dedc663d5 100644 --- a/i18npool/source/breakiterator/breakiterator_unicode.cxx +++ b/i18npool/source/breakiterator/breakiterator_unicode.cxx @@ -36,7 +36,6 @@ U_CDECL_END using namespace ::com::sun::star; using namespace ::com::sun::star::lang; -using namespace ::rtl; namespace com { namespace sun { namespace star { namespace i18n { @@ -462,4 +461,12 @@ BreakIterator_Unicode::getSupportedServiceNames(void) throw( uno::RuntimeExcepti } } } } +extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface * SAL_CALL +com_sun_star_i18n_BreakIterator_Unicode_get_implementation( + css::uno::XComponentContext *, + css::uno::Sequence<css::uno::Any> const &) +{ + return cppu::acquire(new css::i18n::BreakIterator_Unicode()); +} + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |