summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2018-04-17 14:06:38 +0200
committerAndras Timar <andras.timar@collabora.com>2022-02-13 17:54:24 +0100
commitd66b2d68f0e2ac33b04023247698bc93b7454b6a (patch)
treeaa8b4cc07364b6f674131c0ee3c0495395c1c1d4 /sfx2
parentb1164dfa3ea8a0827f74dca6589aac7a18943c4b (diff)
[cp] Send feedback to hello@collaboraoffice.com
Change-Id: Ic734235426001e4aa7119476c1e6884b7c39776d
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/appl/appserv.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/sfx2/source/appl/appserv.cxx b/sfx2/source/appl/appserv.cxx
index ccb93bfc4c6b..d78975afc650 100644
--- a/sfx2/source/appl/appserv.cxx
+++ b/sfx2/source/appl/appserv.cxx
@@ -500,10 +500,8 @@ 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.subView(module.lastIndexOf('.') + 1 ) );
+ OUString sURL("mailto:hello@collaboraoffice.com?Subject=Version:%20" + utl::ConfigManager::getAboutBoxProductVersion() +
+ ",%20Locale:%20" + utl::ConfigManager::getUILocale() + ",%20Module:%20" + module.subView(module.lastIndexOf('.') + 1 ) );
sfx2::openUriExternally(sURL, false, rReq.GetFrameWeld());
break;
}