summaryrefslogtreecommitdiff
path: root/lingucomponent
diff options
context:
space:
mode:
Diffstat (limited to 'lingucomponent')
-rw-r--r--lingucomponent/source/spellcheck/languagetool/languagetoolimp.cxx14
1 files changed, 6 insertions, 8 deletions
diff --git a/lingucomponent/source/spellcheck/languagetool/languagetoolimp.cxx b/lingucomponent/source/spellcheck/languagetool/languagetoolimp.cxx
index 06e9f4eddff1..91a027e6ec6b 100644
--- a/lingucomponent/source/spellcheck/languagetool/languagetoolimp.cxx
+++ b/lingucomponent/source/spellcheck/languagetool/languagetoolimp.cxx
@@ -126,7 +126,10 @@ std::string makeHttpRequest_impl(std::string_view aURL, HTTP_METHOD method,
{
std::unique_ptr<CURL, curl_cleanup_t> curl(curl_easy_init());
if (!curl)
+ {
+ SAL_WARN("languagetool", "CURL initialization failed");
return {}; // empty string
+ }
// Same useragent string as in CurlSession (ucp/webdav-curl/CurlSession.cxx)
curl_version_info_data const* const pVersion(curl_version_info(CURLVERSION_NOW));
@@ -341,20 +344,15 @@ sal_Bool SAL_CALL LanguageToolGrammarChecker::isSpellChecker() { return false; }
sal_Bool SAL_CALL LanguageToolGrammarChecker::hasLocale(const Locale& rLocale)
{
- bool bRes = false;
if (!m_aSuppLocales.hasElements())
getLocales();
for (auto const& suppLocale : std::as_const(m_aSuppLocales))
- {
if (rLocale == suppLocale)
- {
- bRes = true;
- break;
- }
- }
+ return true;
- return bRes;
+ SAL_INFO("languagetool", "No locale \"" << LanguageTag::convertToBcp47(rLocale, false) << "\"");
+ return false;
}
Sequence<Locale> SAL_CALL LanguageToolGrammarChecker::getLocales()