summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-12-08 08:55:03 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-12-08 08:55:33 +0100
commit4788d20ec411d2688af59715944d32fc82ad4d43 (patch)
treef3f9fc72a0a0afb56a839b3f32d56a29eb5f7d6c /unotools
parentf66db2516475da18fc7e59972aa08a5eac288604 (diff)
Non-inline virtual dtors of exported classes
Change-Id: I7b3597d48bf7b0196b98c869329d2fb1a46fa8f2
Diffstat (limited to 'unotools')
-rw-r--r--unotools/source/streaming/streamwrap.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/unotools/source/streaming/streamwrap.cxx b/unotools/source/streaming/streamwrap.cxx
index 92f7aa4165d2..59d751d3758e 100644
--- a/unotools/source/streaming/streamwrap.cxx
+++ b/unotools/source/streaming/streamwrap.cxx
@@ -139,6 +139,8 @@ void OInputStreamWrapper::checkError() const
//= OSeekableInputStreamWrapper
+OSeekableInputStreamWrapper::~OSeekableInputStreamWrapper() = default;
+
OSeekableInputStreamWrapper::OSeekableInputStreamWrapper(SvStream& _rStream)
{
SetStream( &_rStream, false );
@@ -276,6 +278,8 @@ sal_Int64 SAL_CALL OSeekableOutputStreamWrapper::getLength( ) throw (IOExceptio
return (sal_Int64)nEndPos;
}
+OStreamWrapper::~OStreamWrapper() = default;
+
OStreamWrapper::OStreamWrapper(SvStream& _rStream)
{
SetStream( &_rStream, false );