diff options
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( ); |