summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2018-04-17 14:06:38 +0200
committerAndras Timar <andras.timar@collabora.com>2018-04-17 14:06:38 +0200
commit6331b18f307cb928044b2deb27e8e33949cc0348 (patch)
treee4061544157bee0da471c2fef3b8ff2dbb285af6
parent6f7163795c9d341394170b96a5402bdd4a50a2f0 (diff)
Send feedback to support@collaboraoffice.com
Change-Id: Ic734235426001e4aa7119476c1e6884b7c39776d
-rw-r--r--sfx2/source/appl/appserv.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/appl/appserv.cxx b/sfx2/source/appl/appserv.cxx
index 334330afda8e..a6f675bd4b85 100644
--- a/sfx2/source/appl/appserv.cxx
+++ b/sfx2/source/appl/appserv.cxx
@@ -497,8 +497,8 @@ 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 sURL("mailto:support@collaboraoffice.com?Subject=Version:%20" + utl::ConfigManager::getAboutBoxProductVersion() +
+ ",%20Locale:%20" + utl::ConfigManager::getLocale() + ",%20Module:%20" + module.copy(module.lastIndexOf('.') + 1 ) );
sfx2::openUriExternally(sURL, false);
break;
}