From 278379697d82e4b4a3204e82fcdababebe2340f3 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 28 Aug 2012 13:50:47 +0200 Subject: 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 --- io/source/stm/opipe.cxx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'io/source') 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 #include #include #include @@ -27,7 +28,7 @@ #include -#include // OWeakObject +#include // OWeakObject #include #include @@ -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( ); -- cgit