summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorKatarina Behrens <Katarina.Behrens@cib.de>2016-02-09 10:38:29 +0100
committerKatarina Behrens <Katarina.Behrens@cib.de>2019-06-04 15:51:15 +0200
commit830247430a268b1700754f4233a1dd8bf86bdb37 (patch)
tree3e11387c3fdeb14e11d34437fb07f2b9672725d5 /sfx2
parent5b3765f4d881e7ddefd0c4aad6886a46f000b4fc (diff)
Point to CIB helpdesk
Conflicts: sfx2/source/appl/appserv.cxx Change-Id: Ifbbb9e9d2bbee40998c07d1c68b61cd20d77dbc3
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/appl/appserv.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/source/appl/appserv.cxx b/sfx2/source/appl/appserv.cxx
index 1c19d40fecd9..f0524f2dd803 100644
--- a/sfx2/source/appl/appserv.cxx
+++ b/sfx2/source/appl/appserv.cxx
@@ -532,9 +532,9 @@ void SfxApplication::MiscExec_Impl( SfxRequest& rReq )
case SID_SEND_FEEDBACK:
{
- OUString module = SfxHelp::GetCurrentModuleIdentifier();
- OUString sURL("https://hub.libreoffice.org/send-feedback/?LOversion=" + utl::ConfigManager::getAboutBoxProductVersion() +
- "&LOlocale=" + utl::ConfigManager::getLocale() + "&LOmodule=" + module.copy(module.lastIndexOf('.') + 1 ) );
+ OUString lang = Application::GetSettings().GetUILanguageTag().getLanguage();
+ OUString sURL("https://libreoffice.cib.de/support_%1.html");
+ sURL = sURL.replaceFirst("%1", lang);
sfx2::openUriExternally(sURL, false);
break;
}