diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-08 14:51:55 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-08 16:03:37 +0100 |
commit | 6dfc7d12c56fb585edff2cc4f6f37d53398cf751 (patch) | |
tree | 910b1ed92e2fc00b49e6d4aec6897096ef5dd786 /i18npool | |
parent | 0761f81643a6890457e9ef7d913ab5c88c2593a4 (diff) |
Fix LocaleDataImpl::getImplementationName
Change-Id: I36dd015635c30f63e2085c250e159fbd536da611
Diffstat (limited to 'i18npool')
-rw-r--r-- | i18npool/source/localedata/localedata.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/i18npool/source/localedata/localedata.cxx b/i18npool/source/localedata/localedata.cxx index a2f949071fc3..da49400cc71a 100644 --- a/i18npool/source/localedata/localedata.cxx +++ b/i18npool/source/localedata/localedata.cxx @@ -32,8 +32,6 @@ using namespace com::sun::star::uno; using namespace com::sun::star::lang; using namespace com::sun::star; -static const sal_Char clocaledata[] = "com.sun.star.i18n.LocaleData"; - typedef sal_Unicode** (SAL_CALL * MyFunc_Type)( sal_Int16&); typedef sal_Unicode*** (SAL_CALL * MyFunc_Type2)( sal_Int16&, sal_Int16& ); typedef sal_Unicode**** (SAL_CALL * MyFunc_Type3)( sal_Int16&, sal_Int16&, sal_Int16& ); @@ -1618,7 +1616,7 @@ sal_Bool OutlineNumbering::hasElements( ) throw(RuntimeException) OUString SAL_CALL LocaleDataImpl::getImplementationName() throw( RuntimeException ) { - return OUString(clocaledata); + return OUString("com.sun.star.i18n.LocaleDataImpl"); } sal_Bool SAL_CALL LocaleDataImpl::supportsService(const OUString& rServiceName) @@ -1631,7 +1629,7 @@ Sequence< OUString > SAL_CALL LocaleDataImpl::getSupportedServiceNames() throw( RuntimeException ) { Sequence< OUString > aRet(1); - aRet[0] = OUString(clocaledata); + aRet[0] = "com.sun.star.i18n.LocaleData"; return aRet; } |