summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-07-25 00:42:27 +0200
committerAndrea Gelmini <andrea.gelmini@gelma.net>2019-07-25 07:07:25 +0200
commit5ccc8124a03cffca3a1848f754524a06a063cb51 (patch)
tree3456a0c42c38a1936680a4266fbb76c4d585025f /include
parented882d693f37779e3a09641e7cd43b7a925d2312 (diff)
Fix typos
Change-Id: I59a0fd175fa5185c15d093d2d9bed9f95bb4cfd5 Reviewed-on: https://gerrit.libreoffice.org/76280 Tested-by: Jenkins Reviewed-by: Andrea Gelmini <andrea.gelmini@gelma.net>
Diffstat (limited to 'include')
-rw-r--r--include/unotools/streamwrap.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/unotools/streamwrap.hxx b/include/unotools/streamwrap.hxx
index 299b6dfd081f..bb34dd7af7e6 100644
--- a/include/unotools/streamwrap.hxx
+++ b/include/unotools/streamwrap.hxx
@@ -39,7 +39,7 @@ namespace utl
// workaround for incremental linking bugs in MSVC2015
class SAL_DLLPUBLIC_TEMPLATE OInputStreamWrapper_Base : public cppu::WeakImplHelper< css::io::XInputStream > {};
-/// helper class for wrapping an SvStream into an com.sun.star.io::XInputStream
+/// helper class for wrapping an SvStream into a com.sun.star.io::XInputStream
class UNOTOOLS_DLLPUBLIC OInputStreamWrapper : public OInputStreamWrapper_Base
{
protected:
@@ -73,7 +73,7 @@ protected:
//= OSeekableInputStreamWrapper
-/** helper class for wrapping an SvStream into an com.sun.star.io::XInputStream
+/** helper class for wrapping an SvStream into a com.sun.star.io::XInputStream
which is seekable (i.e. supports the com.sun.star.io::XSeekable interface).
*/
class UNOTOOLS_DLLPUBLIC OSeekableInputStreamWrapper
@@ -119,7 +119,7 @@ protected:
typedef ::cppu::ImplHelper1 < css::io::XSeekable
> OSeekableOutputStreamWrapper_Base;
-/** helper class for wrapping an SvStream into an com.sun.star.io::XOutputStream
+/** helper class for wrapping an SvStream into a com.sun.star.io::XOutputStream
which is seekable (i.e. supports the com.sun.star.io::XSeekable interface).
*/
class UNOTOOLS_DLLPUBLIC OSeekableOutputStreamWrapper