summaryrefslogtreecommitdiff
path: root/svx/source/form
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2019-08-21 16:55:47 +0200
committerStephan Bergmann <sbergman@redhat.com>2019-08-21 20:00:47 +0200
commiteaf9565c84017ae3f162b3b6fd229b9772bf513e (patch)
treefd14c5d504c706541c6d5bafe8aa39146a5a0a29 /svx/source/form
parent8bf1542f856bd2b8617d7a0870824a3a2ada4b6c (diff)
Avoid extra calls to INetURLObject::decode
Change-Id: I700c4093213395a12342534fb7685969b5e5b220 Reviewed-on: https://gerrit.libreoffice.org/77891 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'svx/source/form')
-rw-r--r--svx/source/form/fmpage.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/form/fmpage.cxx b/svx/source/form/fmpage.cxx
index 8b4718ae2da4..5fc8df9195c8 100644
--- a/svx/source/form/fmpage.cxx
+++ b/svx/source/form/fmpage.cxx
@@ -140,7 +140,7 @@ bool FmFormPage::RequestHelp( vcl::Window* pWindow, SdrView const * pView,
for (const INetProtocol& i : s_aQuickHelpSupported)
if (i == aProtocol)
{
- aHelpText = INetURLObject::decode(aUrl.GetURLNoPass(), INetURLObject::DecodeMechanism::Unambiguous);
+ aHelpText = aUrl.GetURLNoPass(INetURLObject::DecodeMechanism::Unambiguous);
break;
}
}