summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKatarina Behrens <Katarina.Behrens@cib.de>2016-02-09 10:38:29 +0100
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2020-05-02 16:43:11 +0200
commit4fb5a9db99204704c06241fe8c6e2e1dd02cf122 (patch)
treecb774d5b18f0c0b682533692f5b69578a7bed09a
parent726535ec30f12697ceccd2f0640d9371a64dc5bd (diff)
Point to CIB helpdesk
Conflicts: sfx2/source/appl/appserv.cxx Change-Id: Ifbbb9e9d2bbee40998c07d1c68b61cd20d77dbc3
-rw-r--r--sfx2/source/appl/appserv.cxx8
1 files changed, 3 insertions, 5 deletions
diff --git a/sfx2/source/appl/appserv.cxx b/sfx2/source/appl/appserv.cxx
index 1535f0c4a2da..e5c050b62860 100644
--- a/sfx2/source/appl/appserv.cxx
+++ b/sfx2/source/appl/appserv.cxx
@@ -540,11 +540,9 @@ void SfxApplication::MiscExec_Impl( SfxRequest& rReq )
case SID_SEND_FEEDBACK:
{
- OUString module = SfxHelp::GetCurrentModuleIdentifier();
- OUString sURL(officecfg::Office::Common::Menus::SendFeedbackURL::get() + //officecfg/registry/data/org/openoffice/Office/Common.xcu => https://hub.libreoffice.org/send-feedback/
- "?LOversion=" + utl::ConfigManager::getAboutBoxProductVersion() +
- "&LOlocale=" + utl::ConfigManager::getUILocale() +
- "&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;
}