From bb6503dd081ebb4d11929ab1946eea8d60dd817c Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Sat, 27 Apr 2013 23:21:10 +0200 Subject: *api: convert remaining sed -i "s,\([^<]\+\),\1,g" Change-Id: I74c80f5aa610477fab28faec52e55c3137984aec --- udkapi/com/sun/star/io/TextInputStream.idl | 2 +- udkapi/com/sun/star/io/TextOutputStream.idl | 2 +- udkapi/com/sun/star/io/XActiveDataControl.idl | 4 ++-- udkapi/com/sun/star/io/XInputStreamProvider.idl | 2 +- udkapi/com/sun/star/io/XStreamListener.idl | 4 ++-- udkapi/com/sun/star/io/XTextInputStream.idl | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) (limited to 'udkapi/com/sun/star/io') diff --git a/udkapi/com/sun/star/io/TextInputStream.idl b/udkapi/com/sun/star/io/TextInputStream.idl index 321bf3e5405d..603053e65e9f 100644 --- a/udkapi/com/sun/star/io/TextInputStream.idl +++ b/udkapi/com/sun/star/io/TextInputStream.idl @@ -29,7 +29,7 @@ module com { module sun { module star { module io { /** provides functionality to read text data from a com::sun::star::io::XInputStream that initially has to be passed to the method - XActiveDataSink::setInputStream(). + XActiveDataSink::setInputStream().

For details about the text functionality see com::sun::star::io::XTextInputStream. diff --git a/udkapi/com/sun/star/io/TextOutputStream.idl b/udkapi/com/sun/star/io/TextOutputStream.idl index a123e1272ae4..055335912bcd 100644 --- a/udkapi/com/sun/star/io/TextOutputStream.idl +++ b/udkapi/com/sun/star/io/TextOutputStream.idl @@ -28,7 +28,7 @@ module com { module sun { module star { module io { /** provides functionality to write text data to a com::sun::star::io::XOutputStream that initially has to be passed to the method - XActiveDataSource::setOutputStream(). + XActiveDataSource::setOutputStream().

For details about the text functionality see com::sun::star::io::XTextOutputStream. diff --git a/udkapi/com/sun/star/io/XActiveDataControl.idl b/udkapi/com/sun/star/io/XActiveDataControl.idl index 04334fe0a1d0..57af66322079 100644 --- a/udkapi/com/sun/star/io/XActiveDataControl.idl +++ b/udkapi/com/sun/star/io/XActiveDataControl.idl @@ -49,8 +49,8 @@ published interface XActiveDataControl: com::sun::star::uno::XInterface /** starts I/O. -

Either XActiveDataControl::setInputStream() or - XActiveDataControl::setOutputStream() must be called beforehand. +

Either XActiveDataControl::setInputStream() or + XActiveDataControl::setOutputStream() must be called beforehand.

This method does not block the thread, so reading is diff --git a/udkapi/com/sun/star/io/XInputStreamProvider.idl b/udkapi/com/sun/star/io/XInputStreamProvider.idl index 18e41a119d71..54a54b832209 100644 --- a/udkapi/com/sun/star/io/XInputStreamProvider.idl +++ b/udkapi/com/sun/star/io/XInputStreamProvider.idl @@ -29,7 +29,7 @@ module com { module sun { module star { module io {

Every time createInputStream() is called a new input stream is returned, always pointing to the begin of the same data. All - input streams returned by createInputStream() + input streams returned by createInputStream() are completely independend from each other.

*/ published interface XInputStreamProvider : com::sun::star::uno::XInterface diff --git a/udkapi/com/sun/star/io/XStreamListener.idl b/udkapi/com/sun/star/io/XStreamListener.idl index ed8faa0dba4e..3f9604d16354 100644 --- a/udkapi/com/sun/star/io/XStreamListener.idl +++ b/udkapi/com/sun/star/io/XStreamListener.idl @@ -37,11 +37,11 @@ published interface XStreamListener: com::sun::star::lang::XEventListener transfer is terminated from outside.

The termination could be done using the method - XActiveDataControl::terminate().

+ XActiveDataControl::terminate().

*/ void closed(); - /** gets called when XActiveDataControl::terminate() is called. + /** gets called when XActiveDataControl::terminate() is called. */ void terminated(); diff --git a/udkapi/com/sun/star/io/XTextInputStream.idl b/udkapi/com/sun/star/io/XTextInputStream.idl index dc1ea2606070..85330556a78d 100644 --- a/udkapi/com/sun/star/io/XTextInputStream.idl +++ b/udkapi/com/sun/star/io/XTextInputStream.idl @@ -31,7 +31,7 @@ module com { module sun { module star { module io {

This interfaces allows to read strings separated by delimiters and to read lines. The character encoding - to be used can be set by setEncoding(). + to be used can be set by setEncoding(). Default encoding is "utf8".

*/ published interface XTextInputStream: com::sun::star::io::XInputStream -- cgit