editors/libreoffice: Fix build on gcc-5

PR:		197947
Submitted by:	marino
Approved by:	maintainer timeout
This commit is contained in:
John Marino 2015-03-22 16:43:56 +00:00
parent bbb87bd1e2
commit 41a53bbdda
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=381936

View file

@ -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();