From 399cb7390f654ca7170888d92014cab762061d91 Mon Sep 17 00:00:00 2001 From: Andreas Bregas Date: Wed, 5 Sep 2001 11:45:09 +0000 Subject: #91701# getFolderContents(): Don't decode content file URLs --- fileaccess/source/FileAccess.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'fileaccess') diff --git a/fileaccess/source/FileAccess.cxx b/fileaccess/source/FileAccess.cxx index 4aa9c38db063..fb107b52b210 100644 --- a/fileaccess/source/FileAccess.cxx +++ b/fileaccess/source/FileAccess.cxx @@ -2,9 +2,9 @@ * * $RCSfile: FileAccess.cxx,v $ * - * $Revision: 1.16 $ + * $Revision: 1.17 $ * - * last change: $Author: ab $ $Date: 2001-08-21 10:59:11 $ + * last change: $Author: ab $ $Date: 2001-09-05 12:45:09 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -466,7 +466,7 @@ Sequence< OUString > OFileAccess::getFolderContents( const OUString& FolderURL, { OUString aId = xContentAccess->queryContentIdentifierString(); INetURLObject aURL( aId, INET_PROT_FILE ); - OUString* pFile = new OUString( aURL.GetMainURL( INetURLObject::DECODE_UNAMBIGUOUS ) ); + OUString* pFile = new OUString( aURL.GetMainURL( INetURLObject::NO_DECODE ) ); pFiles->Insert( pFile, LIST_APPEND ); } } -- cgit