diff options
author | Kai Sommerfeld <kso@openoffice.org> | 2001-12-07 13:57:18 +0000 |
---|---|---|
committer | Kai Sommerfeld <kso@openoffice.org> | 2001-12-07 13:57:18 +0000 |
commit | 62bb5daced4a8babe8dc116d374a450a92c557b8 (patch) | |
tree | f1d39099b1a84a01610df98b2fa6dd113b4ff95f /offapi | |
parent | 594468bf9145e204756bacd26a7d2a3ccdbb7a16 (diff) |
#94065# - Added parameter to writeFile method
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/ucb/XSimpleFileAccess2.idl | 10 |
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 ); }; |