sfx2/source/doc/docfile.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
New commits: commit 8dc3fe631583228fe5bb49b44d2308470ec30df0 Author: Mike Kaganski <[email protected]> AuthorDate: Tue Dec 18 02:51:31 2018 +0100 Commit: Mike Kaganski <[email protected]> CommitDate: Tue Dec 18 03:46:05 2018 +0100 tdf#116320: properly decode file name for File Locked dialog Change-Id: I51bd7c6695ef52b08e0b6d809160d74daebb8505 Reviewed-on: https://gerrit.libreoffice.org/65298 Tested-by: Jenkins Reviewed-by: Mike Kaganski <[email protected]> diff --git a/sfx2/source/doc/docfile.cxx b/sfx2/source/doc/docfile.cxx index 45449a26731b..7c23cfa90046 100644 --- a/sfx2/source/doc/docfile.cxx +++ b/sfx2/source/doc/docfile.cxx @@ -1002,7 +1002,8 @@ SfxMedium::ShowLockResult SfxMedium::ShowLockedDocumentDialog(const OUString& aD if ( xHandler.is() && ( bIsLoading || !bHandleSysLocked || bOwnLock ) ) { - OUString aDocumentURL = GetURLObject().GetLastName(); + OUString aDocumentURL + = GetURLObject().GetLastName(INetURLObject::DecodeMechanism::WithCharset); OUString aInfo; ::rtl::Reference< ::ucbhelper::InteractionRequest > xInteractionRequestImpl; _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
