diff options
author | Noel Grandin <noel@peralex.com> | 2012-08-28 13:50:47 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-09-03 15:55:04 +0200 |
commit | 278379697d82e4b4a3204e82fcdababebe2340f3 (patch) | |
tree | ee847794cdd14bbb11e11c5d2269213cdb2719aa /io/source | |
parent | 9b07288138228af56e58f50dc6ba50865b52fdfb (diff) |
fdo#46808, Adapt io::Pipe UNO service to new style
Create a merged XPipe interface for this service to implement.
Which is backwards-compatible, but does not require creating a new service.
Change-Id: I682633c6252aab503eb2469c9bd2ba771f10bc4b
Diffstat (limited to 'io/source')
-rw-r--r-- | io/source/stm/opipe.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/io/source/stm/opipe.cxx b/io/source/stm/opipe.cxx index 32c3c53396f5..9c04fe4c3163 100644 --- a/io/source/stm/opipe.cxx +++ b/io/source/stm/opipe.cxx @@ -19,6 +19,7 @@ // streams +#include <com/sun/star/io/XPipe.hpp> #include <com/sun/star/io/XInputStream.hpp> #include <com/sun/star/io/XOutputStream.hpp> #include <com/sun/star/io/XConnectable.hpp> @@ -27,7 +28,7 @@ #include <cppuhelper/factory.hxx> -#include <cppuhelper/implbase4.hxx> // OWeakObject +#include <cppuhelper/implbase3.hxx> // OWeakObject #include <osl/conditn.hxx> #include <osl/mutex.hxx> @@ -52,7 +53,7 @@ using namespace ::com::sun::star::lang; namespace io_stm{ class OPipeImpl : - public WeakImplHelper4< XInputStream , XOutputStream , XConnectable , XServiceInfo > + public WeakImplHelper3< XPipe , XConnectable , XServiceInfo > { public: OPipeImpl( ); |