summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorKai Sommerfeld <kso@openoffice.org>2001-12-07 13:57:18 +0000
committerKai Sommerfeld <kso@openoffice.org>2001-12-07 13:57:18 +0000
commit62bb5daced4a8babe8dc116d374a450a92c557b8 (patch)
treef1d39099b1a84a01610df98b2fa6dd113b4ff95f /offapi
parent594468bf9145e204756bacd26a7d2a3ccdbb7a16 (diff)
#94065# - Added parameter to writeFile method
Diffstat (limited to 'offapi')
-rw-r--r--offapi/com/sun/star/ucb/XSimpleFileAccess2.idl10
1 files changed, 7 insertions, 3 deletions
diff --git a/offapi/com/sun/star/ucb/XSimpleFileAccess2.idl b/offapi/com/sun/star/ucb/XSimpleFileAccess2.idl
index 5880cc7f3f17..2fdec149f11f 100644
--- a/offapi/com/sun/star/ucb/XSimpleFileAccess2.idl
+++ b/offapi/com/sun/star/ucb/XSimpleFileAccess2.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: XSimpleFileAccess2.idl,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: kso $ $Date: 2001-12-07 14:28:48 $
+ * last change: $Author: kso $ $Date: 2001-12-07 14:57:18 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -89,10 +89,14 @@ interface XSimpleFileAccess2 : com::sun::star::ucb::XSimpleFileAccess
<p>If the file does not exist, it will be created.
+ @param FileURL
+ File to write
+
@param data
A stream containing the data for the file to be (over-)written
*/
- void writeFile( [in] com::sun::star::io::XInputStream data )
+ void writeFile( [in] string FileURL,
+ [in] com::sun::star::io::XInputStream data )
raises( com::sun::star::uno::Exception );
};