[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-5.3' - sfx2/source

Jan Holesovsky kendy at collabora.com
Thu Dec 14 10:34:52 UTC 2017


 sfx2/source/appl/sfxhelp.cxx |    3 +++
 1 file changed, 3 insertions(+)

New commits:
commit ca35b857cc99dcd909e5c2662043ea6a4ffdf244
Author: Jan Holesovsky <kendy at collabora.com>
Date:   Thu Dec 14 08:46:32 2017 +0100

    LOK: Honor the user's language when issuing help.
    
    Change-Id: I2cfe5e5ae0e10dffb7b5672fccdc71af6060491d
    Reviewed-on: https://gerrit.libreoffice.org/46435
    Reviewed-by: Michael Meeks <michael.meeks at collabora.com>
    Tested-by: Michael Meeks <michael.meeks at collabora.com>

diff --git a/sfx2/source/appl/sfxhelp.cxx b/sfx2/source/appl/sfxhelp.cxx
index 7e98a7984ed2..869945874d48 100644
--- a/sfx2/source/appl/sfxhelp.cxx
+++ b/sfx2/source/appl/sfxhelp.cxx
@@ -104,6 +104,9 @@ static bool impl_hasHelpInstalled( const OUString &rLang );
 /// Return the locale we prefer for displaying help
 static OUString const & HelpLocaleString()
 {
+    if (comphelper::LibreOfficeKit::isActive())
+        return comphelper::LibreOfficeKit::getLanguageTag().getBcp47();
+
     static OUString aLocaleStr;
     if (aLocaleStr.isEmpty())
     {


More information about the Libreoffice-commits mailing list