summaryrefslogtreecommitdiff
path: root/include/unotools/streamwrap.hxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-04-29 19:06:50 +0200
committerMichael Stahl <mstahl@redhat.com>2013-06-04 12:00:58 +0200
commitbf080115bac322b177ffcf1e15aff4de1d742b4c (patch)
tree52c7b2989273a4175dbedab888e1806b7bf6588e /include/unotools/streamwrap.hxx
parent91dde49e9aef3991dbb159507cb03b73ba507818 (diff)
include: convert type scope="foo"> here too
sed -i 's,<type scope="\([^"]*\)">\([^<]\+\)</type>,\1::\2,g' Change-Id: I7eb32acd44132de79cc7ac1e7f78b43bb4814d14
Diffstat (limited to 'include/unotools/streamwrap.hxx')
-rw-r--r--include/unotools/streamwrap.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/unotools/streamwrap.hxx b/include/unotools/streamwrap.hxx
index 097b3dee94e3..d4d08cad406e 100644
--- a/include/unotools/streamwrap.hxx
+++ b/include/unotools/streamwrap.hxx
@@ -42,7 +42,7 @@ namespace utl
typedef ::cppu::WeakImplHelper1 < stario::XInputStream
> InputStreamWrapper_Base;
// needed for some compilers
-/// helper class for wrapping an SvStream into an <type scope="com.sun.star.io">XInputStream</type>
+/// helper class for wrapping an SvStream into an com.sun.star.io::XInputStream
class UNOTOOLS_DLLPUBLIC OInputStreamWrapper : public InputStreamWrapper_Base
{
protected:
@@ -78,8 +78,8 @@ protected:
//==================================================================
typedef ::cppu::ImplHelper1 < ::com::sun::star::io::XSeekable
> OSeekableInputStreamWrapper_Base;
-/** helper class for wrapping an SvStream into an <type scope="com.sun.star.io">XInputStream</type>
- which is seekable (i.e. supports the <type scope="com.sun.star.io">XSeekable</type> interface).
+/** helper class for wrapping an SvStream into an com.sun.star.io::XInputStream
+ which is seekable (i.e. supports the com.sun.star.io::XSeekable interface).
*/
class UNOTOOLS_DLLPUBLIC OSeekableInputStreamWrapper : public ::cppu::ImplInheritanceHelper1 < OInputStreamWrapper, com::sun::star::io::XSeekable >
{
@@ -125,8 +125,8 @@ protected:
//==================================================================
typedef ::cppu::ImplHelper1 < ::com::sun::star::io::XSeekable
> OSeekableOutputStreamWrapper_Base;
-/** helper class for wrapping an SvStream into an <type scope="com.sun.star.io">XOutputStream</type>
- which is seekable (i.e. supports the <type scope="com.sun.star.io">XSeekable</type> interface).
+/** helper class for wrapping an SvStream into an com.sun.star.io::XOutputStream
+ which is seekable (i.e. supports the com.sun.star.io::XSeekable interface).
*/
class OSeekableOutputStreamWrapper
:public OOutputStreamWrapper