[Libreoffice-commits] core.git: sw/source
Andreas Heinisch (via logerrit)
logerrit at kemper.freedesktop.org
Tue Aug 24 18:51:37 UTC 2021
sw/source/uibase/utlui/glbltree.cxx | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
New commits:
commit a558be2393cf05a4ccf8b4af546207e69669eba2
Author: Andreas Heinisch <andreas.heinisch at yahoo.de>
AuthorDate: Tue Aug 24 09:06:48 2021 +0200
Commit: Andreas Heinisch <andreas.heinisch at yahoo.de>
CommitDate: Tue Aug 24 20:51:02 2021 +0200
tdf#127978 - Don't URL encode filename for navigator's tooltip (D&D)
Change-Id: I3a5d6404755698be81818c4636fcc505992e1a05
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120936
Tested-by: Jenkins
Reviewed-by: Andreas Heinisch <andreas.heinisch at yahoo.de>
diff --git a/sw/source/uibase/utlui/glbltree.cxx b/sw/source/uibase/utlui/glbltree.cxx
index ab8beedabc41..8ea94f9680f8 100644
--- a/sw/source/uibase/utlui/glbltree.cxx
+++ b/sw/source/uibase/utlui/glbltree.cxx
@@ -522,7 +522,9 @@ void SwGlobalTree::InsertRegion( const SwGlblDocContent* pCont, const OUString*
aFileNames.realloc(1);
INetURLObject aFileName;
aFileName.SetSmartURL( *pFileName );
- aFileNames.getArray()[0] = aFileName.GetMainURL( INetURLObject::DecodeMechanism::NONE );
+ // tdf#127978 - don't URL encode filename for navigator's tooltip
+ aFileNames.getArray()[0]
+ = aFileName.GetMainURL(INetURLObject::DecodeMechanism::Unambiguous);
InsertRegion( pCont, aFileNames );
}
}
More information about the Libreoffice-commits
mailing list