summaryrefslogtreecommitdiff
path: root/fileaccess
diff options
context:
space:
mode:
authorAndreas Bregas <ab@openoffice.org>2001-08-03 14:16:30 +0000
committerAndreas Bregas <ab@openoffice.org>2001-08-03 14:16:30 +0000
commit67e2af627ad2abcf640d509b863c2eb22cbb325b (patch)
tree985402c439db9b35a16357c9ade95fb09f5101af /fileaccess
parente52c3a0678199ca86484b29ff0ef5571beab84ba (diff)
#90342# OFileAccess::openFileReadWrite(): ReplaceExisting must be false
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 8850308550..07402b863a 100644
--- a/fileaccess/source/FileAccess.cxx
+++ b/fileaccess/source/FileAccess.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: FileAccess.cxx,v $
*
- * $Revision: 1.13 $
+ * $Revision: 1.14 $
*
- * last change: $Author: mba $ $Date: 2001-07-20 11:15:29 $
+ * last change: $Author: ab $ $Date: 2001-08-03 15:16:30 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -541,7 +541,7 @@ Reference< XStream > OFileAccess::openFileReadWrite( const OUString& FileURL )
Reference< XInputStream > xInput( pInput );
InsertCommandArgument aInsertArg;
aInsertArg.Data = xInput;
- aInsertArg.ReplaceExisting = sal_True;
+ aInsertArg.ReplaceExisting = sal_False;
INetURLObject aFileObj( FileURL, INET_PROT_FILE );
Content aCnt( aFileObj.GetMainURL(), mxEnvironment );