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
commit396620c4bf41d4809c2665a9b15a4d3e76e202e3 (patch)
tree4b9c012b4f213639202b9990e9d526f08daf7002 /fileaccess
parent0f1a054c8be95c0d914943616a4fd62fdeee3bca (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 f7bf46b6c9..e9027f6040 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 );
}
}