summaryrefslogtreecommitdiff
path: root/include
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 /include
parentf66db2516475da18fc7e59972aa08a5eac288604 (diff)
Non-inline virtual dtors of exported classes
Change-Id: I7b3597d48bf7b0196b98c869329d2fb1a46fa8f2
Diffstat (limited to 'include')
-rw-r--r--include/unotools/streamwrap.hxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/unotools/streamwrap.hxx b/include/unotools/streamwrap.hxx
index e2303a1ac58a..f0b52aa060a0 100644
--- a/include/unotools/streamwrap.hxx
+++ b/include/unotools/streamwrap.hxx
@@ -82,6 +82,8 @@ class UNOTOOLS_DLLPUBLIC OSeekableInputStreamWrapper : public ::cppu::ImplInheri
{
protected:
OSeekableInputStreamWrapper() {}
+ ~OSeekableInputStreamWrapper() override;
+
public:
OSeekableInputStreamWrapper(SvStream& _rStream);
OSeekableInputStreamWrapper(SvStream* _pStream, bool _bOwner = false);
@@ -146,6 +148,9 @@ private:
class UNOTOOLS_DLLPUBLIC OStreamWrapper : public ::cppu::ImplInheritanceHelper3 < OSeekableInputStreamWrapper, css::io::XStream, css::io::XOutputStream, css::io::XTruncate >
{
+protected:
+ ~OStreamWrapper() override;
+
public:
OStreamWrapper(SvStream& _rStream);