summaryrefslogtreecommitdiff
path: root/fileaccess
diff options
context:
space:
mode:
authorAndreas Bregas <ab@openoffice.org>2000-10-19 06:25:37 +0000
committerAndreas Bregas <ab@openoffice.org>2000-10-19 06:25:37 +0000
commit9aa4ef4b7055ce0c4a9a83d9601caf50a9bc2199 (patch)
tree4500a1a7bcbfcca4ac76e05c18fdf3a44ed5f839 /fileaccess
parent1716bff44744aacfb5ecec9b6894d16a4eee1b39 (diff)
XStream modification
Diffstat (limited to 'fileaccess')
-rw-r--r--fileaccess/source/FileAccess.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/fileaccess/source/FileAccess.cxx b/fileaccess/source/FileAccess.cxx
index 183847fc280e..1fd65ad1bbc2 100644
--- a/fileaccess/source/FileAccess.cxx
+++ b/fileaccess/source/FileAccess.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: FileAccess.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: ab $ $Date: 2000-10-11 12:26:12 $
+ * last change: $Author: ab $ $Date: 2000-10-19 07:25:37 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -511,9 +511,9 @@ Reference< XOutputStream > OFileAccess::openFileWrite( const OUString& FileURL )
throw(CommandAbortedException, Exception, RuntimeException)
{
Reference< XOutputStream > xRet;
- //Reference< XStream > xStream = OFileAccess::openFileReadWrite( FileURL );
- //if( xStream.is() )
- //xRet = xStream.getOutputStream();
+ Reference< XStream > xStream = OFileAccess::openFileReadWrite( FileURL );
+ if( xStream.is() )
+ xRet = xStream->getOutputStream();
return xRet;
}