summaryrefslogtreecommitdiff
path: root/fileaccess/source/FileAccess.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'fileaccess/source/FileAccess.cxx')
-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;
}