diff options
Diffstat (limited to 'svtools/source/hatchwindow')
-rw-r--r-- | svtools/source/hatchwindow/documentcloser.cxx | 4 | ||||
-rw-r--r-- | svtools/source/hatchwindow/hatchwindowfactory.cxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/svtools/source/hatchwindow/documentcloser.cxx b/svtools/source/hatchwindow/documentcloser.cxx index 2629362905d4..78bdf83b7b01 100644 --- a/svtools/source/hatchwindow/documentcloser.cxx +++ b/svtools/source/hatchwindow/documentcloser.cxx @@ -27,7 +27,7 @@ #include <com/sun/star/frame/XFrame.hpp> #include <com/sun/star/awt/XVclWindowPeer.hpp> #include <comphelper/processfactory.hxx> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> #include <cppuhelper/interfacecontainer.h> #include <cppuhelper/supportsservice.hxx> #include <osl/mutex.hxx> @@ -44,7 +44,7 @@ namespace { // the service is implemented as a wrapper to be able to die by refcount // the disposing mechanics is required for java related scenarios -class ODocumentCloser : public ::cppu::WeakImplHelper2< ::com::sun::star::lang::XComponent, +class ODocumentCloser : public ::cppu::WeakImplHelper< ::com::sun::star::lang::XComponent, ::com::sun::star::lang::XServiceInfo > { ::osl::Mutex m_aMutex; diff --git a/svtools/source/hatchwindow/hatchwindowfactory.cxx b/svtools/source/hatchwindow/hatchwindowfactory.cxx index d31c989cefa0..62c4c78405ad 100644 --- a/svtools/source/hatchwindow/hatchwindowfactory.cxx +++ b/svtools/source/hatchwindow/hatchwindowfactory.cxx @@ -20,7 +20,7 @@ #include <com/sun/star/embed/XHatchWindowFactory.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/uno/XComponentContext.hpp> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> #include <cppuhelper/supportsservice.hxx> #include <rtl/ref.hxx> #include <vcl/svapp.hxx> @@ -31,7 +31,7 @@ using namespace ::com::sun::star; namespace { -class OHatchWindowFactory : public ::cppu::WeakImplHelper2< +class OHatchWindowFactory : public ::cppu::WeakImplHelper< embed::XHatchWindowFactory, lang::XServiceInfo > { |