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
commitfb503a90f8162899ffb51c9756fd463fc8ab204a (patch)
treeb205ed1540e1846e9c094652a34f3a19a793281b /fileaccess
parentc09a40e8f72f0ccc3f5bc2790abfb5ba5de7e426 (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 59ef6cf33e3c..ce1ac55a8bbd 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 );