diff options
author | John Marino <marino@FreeBSD.org> | 2015-03-22 16:43:56 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2015-03-22 16:43:56 +0000 |
commit | 41a53bbdda646b84330ca6732286e60181dfa071 (patch) | |
tree | 6d17b962e63dadc23293eeb877a3e98a549c4705 /editors/libreoffice | |
parent | bbb87bd1e285191d7800801bb415d9a474b39a0c (diff) | |
download | freebsd-ports-41a53bbdda646b84330ca6732286e60181dfa071.zip |
editors/libreoffice: Fix build on gcc-5
PR: 197947
Submitted by: marino
Approved by: maintainer timeout
Diffstat (limited to 'editors/libreoffice')
-rw-r--r-- | editors/libreoffice/files/patch-include_unotools_streamwrap.hxx | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/editors/libreoffice/files/patch-include_unotools_streamwrap.hxx b/editors/libreoffice/files/patch-include_unotools_streamwrap.hxx new file mode 100644 index 000000000000..c749e5e0598d --- /dev/null +++ b/editors/libreoffice/files/patch-include_unotools_streamwrap.hxx @@ -0,0 +1,17 @@ +--- include/unotools/streamwrap.hxx.orig 2014-12-11 21:00:24 UTC ++++ include/unotools/streamwrap.hxx +@@ -125,12 +125,12 @@ typedef ::cppu::ImplHelper1 < ::com::s + /** 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 ++class UNOTOOLS_DLLPUBLIC OSeekableOutputStreamWrapper + :public OOutputStreamWrapper + ,public OSeekableOutputStreamWrapper_Base + { + public: +- UNOTOOLS_DLLPUBLIC OSeekableOutputStreamWrapper(SvStream& _rStream); ++ OSeekableOutputStreamWrapper(SvStream& _rStream); + + private: + virtual ~OSeekableOutputStreamWrapper(); |