diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-01-11 13:01:53 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-01-11 13:17:08 +0100 |
commit | 214f5cf2f104c1e64307ca9d4b933a39c87c507b (patch) | |
tree | 69c44b093b1b66024c36bcd00b59bb253e3e00ca /package | |
parent | 00c62e306f4fd866f04a496a28c15d317ba02222 (diff) |
loplugin:privatebase: Publicly derive from UNO interfaces
Somewhat arbitrarily prefer public over private derivation; the former is what
is used by default across the code base.
Change-Id: I936c1b0d3231ac97015863f396a5af49f6c9647b
Diffstat (limited to 'package')
-rw-r--r-- | package/source/xstor/owriteablestream.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/source/xstor/owriteablestream.hxx b/package/source/xstor/owriteablestream.hxx index d34f1fb89cb9..c84a653fca45 100644 --- a/package/source/xstor/owriteablestream.hxx +++ b/package/source/xstor/owriteablestream.hxx @@ -230,7 +230,7 @@ public: sal_Int32 GetNewRelId() { return m_nRelId ++; } }; -class OWriteStream : css::lang::XTypeProvider +class OWriteStream : public css::lang::XTypeProvider , public css::io::XInputStream , public css::io::XOutputStream , public css::embed::XExtendedStorageStream |