sc/source/ui/unoobj/filtuno.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 6e8c9047f4bf6194bd1423422bd2dc9f92c50725
Author:     Andreas Heinisch <andreas.heini...@yahoo.de>
AuthorDate: Wed Jun 30 10:37:08 2021 +0200
Commit:     Andreas Heinisch <andreas.heini...@yahoo.de>
CommitDate: Wed Jun 30 12:05:03 2021 +0200

    tdf#132421 - don't URL encode filename for the import ASCII dialog title
    
    Change-Id: Ia2cb7b6b355f640a525c41606da25ba35771499b
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/118148
    Tested-by: Jenkins
    Reviewed-by: Andreas Heinisch <andreas.heini...@yahoo.de>

diff --git a/sc/source/ui/unoobj/filtuno.cxx b/sc/source/ui/unoobj/filtuno.cxx
index 1e6119ecb36d..fbea6e78aa19 100644
--- a/sc/source/ui/unoobj/filtuno.cxx
+++ b/sc/source/ui/unoobj/filtuno.cxx
@@ -182,7 +182,8 @@ sal_Int16 SAL_CALL ScFilterOptionsObj::execute()
         //  ascii import is special...
 
         INetURLObject aURL( aFileName );
-        OUString aPrivDatName(aURL.getName());
+        // tdf#132421 - don't URL encode filename for the import ASCII dialog 
title
+        OUString 
aPrivDatName(aURL.GetLastName(INetURLObject::DecodeMechanism::Unambiguous));
         std::unique_ptr<SvStream> pInStream;
         if ( xInputStream.is() )
             pInStream = utl::UcbStreamHelper::CreateStream( xInputStream );
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to