summaryrefslogtreecommitdiff
path: root/cppuhelper/source/servicemanager.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'cppuhelper/source/servicemanager.cxx')
-rw-r--r--cppuhelper/source/servicemanager.cxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/cppuhelper/source/servicemanager.cxx b/cppuhelper/source/servicemanager.cxx
index 22411286a2b7..57925af29bf6 100644
--- a/cppuhelper/source/servicemanager.cxx
+++ b/cppuhelper/source/servicemanager.cxx
@@ -29,8 +29,7 @@
#include <com/sun/star/uno/XComponentContext.hpp>
#include <cppuhelper/bootstrap.hxx>
#include <cppuhelper/component_context.hxx>
-#include <cppuhelper/implbase1.hxx>
-#include <cppuhelper/implbase3.hxx>
+#include <cppuhelper/implbase.hxx>
#include <cppuhelper/supportsservice.hxx>
#include <cppuhelper/factory.hxx>
#include <cppuhelper/shlib.hxx>
@@ -439,7 +438,7 @@ rtl::OUString Parser::getNameAttribute() {
}
class ContentEnumeration:
- public cppu::WeakImplHelper1< css::container::XEnumeration >
+ public cppu::WeakImplHelper< css::container::XEnumeration >
{
public:
explicit ContentEnumeration(std::vector< css::uno::Any > const & factories):
@@ -493,7 +492,7 @@ css::beans::Property getDefaultContextProperty() {
}
class SingletonFactory:
- public cppu::WeakImplHelper1<css::lang::XSingleComponentFactory>
+ public cppu::WeakImplHelper<css::lang::XSingleComponentFactory>
{
public:
SingletonFactory(
@@ -547,7 +546,7 @@ SingletonFactory::createInstanceWithArgumentsAndContext(
}
class ImplementationWrapper:
- public cppu::WeakImplHelper3<
+ public cppu::WeakImplHelper<
css::lang::XSingleComponentFactory, css::lang::XSingleServiceFactory,
css::lang::XServiceInfo >
{