diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-04-29 19:06:50 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-06-04 12:00:58 +0200 |
commit | bf080115bac322b177ffcf1e15aff4de1d742b4c (patch) | |
tree | 52c7b2989273a4175dbedab888e1806b7bf6588e /include/unotools | |
parent | 91dde49e9aef3991dbb159507cb03b73ba507818 (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')
-rw-r--r-- | include/unotools/componentresmodule.hxx | 2 | ||||
-rw-r--r-- | include/unotools/desktopterminationobserver.hxx | 2 | ||||
-rw-r--r-- | include/unotools/streamsection.hxx | 4 | ||||
-rw-r--r-- | include/unotools/streamwrap.hxx | 10 |
4 files changed, 9 insertions, 9 deletions
diff --git a/include/unotools/componentresmodule.hxx b/include/unotools/componentresmodule.hxx index 0014794f3584..d27b5c7604e6 100644 --- a/include/unotools/componentresmodule.hxx +++ b/include/unotools/componentresmodule.hxx @@ -38,7 +38,7 @@ namespace utl //==================================================================== //= OComponentResourceModule //==================================================================== - /** extends the <type scope="comphelper">OModule</type> implementation with + /** extends the comphelper::OModule implementation with simply resource access */ class UNOTOOLS_DLLPUBLIC OComponentResourceModule : public ::comphelper::OModule diff --git a/include/unotools/desktopterminationobserver.hxx b/include/unotools/desktopterminationobserver.hxx index 0f771669a485..786105efe142 100644 --- a/include/unotools/desktopterminationobserver.hxx +++ b/include/unotools/desktopterminationobserver.hxx @@ -29,7 +29,7 @@ namespace utl //==================================================================== //= ITerminationListener //==================================================================== - /** non-UNO version of the <type scope="com.sun.star.frame">XTerminateListener</type> + /** non-UNO version of the com.sun.star.frame::XTerminateListener */ class ITerminationListener { diff --git a/include/unotools/streamsection.hxx b/include/unotools/streamsection.hxx index 8e347eec5d4e..66d015e83aab 100644 --- a/include/unotools/streamsection.hxx +++ b/include/unotools/streamsection.hxx @@ -50,13 +50,13 @@ class OStreamSection public: /** starts reading of a "skippable" section of data within the given input stream<BR> @param _rxInput the stream to read from. Must support the - <type scope="com::sun::star::io">XMarkableStream</type> interface + com::sun::star::io::XMarkableStream interface */ OStreamSection(const staruno::Reference< stario::XDataInputStream >& _rxInput); /** starts writing of a "skippable" section of data into the given output stream @param _rxOutput the stream the stream to write to. Must support the - <type scope="com::sun::star::io">XMarkableStream</type> interface + com::sun::star::io::XMarkableStream interface @param _nPresumedLength estimation for the length of the upcoming section. If greater 0, this value will be written as section length and corrected (in the dtor) only if needed. If you know how much bytes you are about to write, you may 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 |