summaryrefslogtreecommitdiff
path: root/desktop/test
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-09-15 11:10:15 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-09-15 11:10:15 +0200
commit63c707ad358942d9a469d59a008d89dbf1c7341d (patch)
tree4f5d24edb12cbef0451d236d522418f3af5bbac7 /desktop/test
parent2532dd76b8593b1184970f6520ecc3c9571b0876 (diff)
Revert cppuhelper/implbase.hxx usage in non-LIBO_INTERNAL_ONLY code, again
Change-Id: I8c40f4ea79941e7ca5438ff9756f62988719cebc
Diffstat (limited to 'desktop/test')
-rw-r--r--desktop/test/deployment/active/active_native.cxx6
-rw-r--r--desktop/test/deployment/passive/passive_native.cxx6
2 files changed, 6 insertions, 6 deletions
diff --git a/desktop/test/deployment/active/active_native.cxx b/desktop/test/deployment/active/active_native.cxx
index ee36e84aa61e..06da72a3b274 100644
--- a/desktop/test/deployment/active/active_native.cxx
+++ b/desktop/test/deployment/active/active_native.cxx
@@ -46,7 +46,7 @@
#include <com/sun/star/uno/XInterface.hpp>
#include <com/sun/star/util/URL.hpp>
#include <cppuhelper/factory.hxx>
-#include <cppuhelper/implbase.hxx>
+#include <cppuhelper/implbase2.hxx>
#include <cppuhelper/implementationentry.hxx>
#include <cppuhelper/supportsservice.hxx>
#include <cppuhelper/weak.hxx>
@@ -59,7 +59,7 @@
namespace {
class Provider:
- public cppu::WeakImplHelper<
+ public cppu::WeakImplHelper2<
css::lang::XServiceInfo, css::frame::XDispatchProvider >,
private boost::noncopyable
{
@@ -150,7 +150,7 @@ Provider::queryDispatches(
}
class Dispatch:
- public cppu::WeakImplHelper<
+ public cppu::WeakImplHelper2<
css::lang::XServiceInfo, css::frame::XDispatch >,
private boost::noncopyable
{
diff --git a/desktop/test/deployment/passive/passive_native.cxx b/desktop/test/deployment/passive/passive_native.cxx
index 6cbff6982c15..70b11ccebc03 100644
--- a/desktop/test/deployment/passive/passive_native.cxx
+++ b/desktop/test/deployment/passive/passive_native.cxx
@@ -45,7 +45,7 @@
#include <com/sun/star/uno/XInterface.hpp>
#include <com/sun/star/util/URL.hpp>
#include <cppuhelper/factory.hxx>
-#include <cppuhelper/implbase.hxx>
+#include <cppuhelper/implbase2.hxx>
#include <cppuhelper/implementationentry.hxx>
#include <cppuhelper/supportsservice.hxx>
#include <cppuhelper/weak.hxx>
@@ -56,7 +56,7 @@
namespace {
class Provider:
- public cppu::WeakImplHelper<
+ public cppu::WeakImplHelper2<
css::lang::XServiceInfo, css::frame::XDispatchProvider >,
private boost::noncopyable
{
@@ -147,7 +147,7 @@ Provider::queryDispatches(
}
class Dispatch:
- public cppu::WeakImplHelper<
+ public cppu::WeakImplHelper2<
css::lang::XServiceInfo, css::frame::XDispatch >,
private boost::noncopyable
{