summaryrefslogtreecommitdiff
path: root/fileaccess
diff options
context:
space:
mode:
authorAndreas Bregas <ab@openoffice.org>2001-09-05 11:45:09 +0000
committerAndreas Bregas <ab@openoffice.org>2001-09-05 11:45:09 +0000
commit399cb7390f654ca7170888d92014cab762061d91 (patch)
treefd9075eb3e7b1b7adc8de1455a0c6149855d756c /fileaccess
parent44515a292b358bd777509a18341843bfdcd59bad (diff)
#91701# getFolderContents(): Don't decode content file URLs
Diffstat (limited to 'fileaccess')
-rw-r--r--fileaccess/source/FileAccess.cxx6
1 files changed, 3 insertions, 3 deletions
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 );
}
}