diff options
author | Jan Holesovsky <kendy@collabora.com> | 2017-10-03 10:01:40 +0200 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2017-10-03 10:03:45 +0200 |
commit | 055766f79ef74e1774d0f434ac13c6276d849902 (patch) | |
tree | e73e0f39b8434f28a36eee55f15739956a559aa5 /comphelper | |
parent | 9127d1a89cbfba89eb9df6755ea7b9e161cfc67a (diff) |
LOK: getSpellLanguages() is not necessary in comphelper in the end.
Change-Id: If81cd3d4508ba3f44304a9ec9b643bf771e8930c
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/misc/lok.cxx | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/comphelper/source/misc/lok.cxx b/comphelper/source/misc/lok.cxx index 4e24ab9d391b..a4f60ac6c565 100644 --- a/comphelper/source/misc/lok.cxx +++ b/comphelper/source/misc/lok.cxx @@ -8,11 +8,6 @@ */ #include <comphelper/lok.hxx> -#include <comphelper/processfactory.hxx> - -#include <com/sun/star/linguistic2/LinguServiceManager.hpp> -#include <com/sun/star/linguistic2/XSpellChecker.hpp> - namespace comphelper { @@ -119,16 +114,6 @@ void statusIndicatorFinish() pStatusIndicatorCallback(pStatusIndicatorCallbackData, statusIndicatorCallbackType::Finish, 0); } -css::uno::Sequence< css::lang::Locale > getSpellLanguages() -{ - css::uno::Reference< css::uno::XComponentContext> xContext = ::comphelper::getProcessComponentContext(); - css::uno::Reference< css::linguistic2::XLinguServiceManager2 > xLangSrv = css::linguistic2::LinguServiceManager::create(xContext); - css::uno::Reference< css::linguistic2::XSpellChecker > xSpell(xLangSrv.is() ? xLangSrv->getSpellChecker() : nullptr, css::uno::UNO_QUERY); - css::uno::Reference< css::linguistic2::XSupportedLocales > xLocales(xSpell, css::uno::UNO_QUERY); - css::uno::Sequence< css::lang::Locale > aLocales(xLocales.is() ? xLocales->getLocales() : css::uno::Sequence< css::lang::Locale >()); - return aLocales; -} - } // namespace LibreOfficeKit } // namespace comphelper |