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
commitf1f62f436fdf4f3938c4902b8f3bd235235c32be (patch)
tree9b4bfb38635e04857abc8bd0f299c2339244b346 /fileaccess
parent601882905a53d964fc9c560917a82c74399858a1 (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 664b5d6246..9d6fe95a96 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;
}