summaryrefslogtreecommitdiffstats
path: root/configmgr/source/readonlyaccess.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-07-12 21:05:40 +0900
committerNoel Grandin <noelgrandin@gmail.com>2015-07-13 07:37:04 +0000
commit5d75fc9dbbff29e531348a36d5cb49a5ca0d611d (patch)
tree4411462a5e1f425afdc88e78637d890ae7e4a877 /configmgr/source/readonlyaccess.cxx
parentBroken code (diff)
downloadcore-5d75fc9dbbff29e531348a36d5cb49a5ca0d611d.tar.gz
core-5d75fc9dbbff29e531348a36d5cb49a5ca0d611d.zip
tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants, in configmgr. Change-Id: I0cf82ab487ed879aa385d6065e908e347c0778e8 Reviewed-on: https://gerrit.libreoffice.org/16964 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'configmgr/source/readonlyaccess.cxx')
-rw-r--r--configmgr/source/readonlyaccess.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/configmgr/source/readonlyaccess.cxx b/configmgr/source/readonlyaccess.cxx
index 9989eac30ab2..afaef972f3ff 100644
--- a/configmgr/source/readonlyaccess.cxx
+++ b/configmgr/source/readonlyaccess.cxx
@@ -22,7 +22,7 @@
#include <com/sun/star/uno/Sequence.hxx>
#include <com/sun/star/uno/XComponentContext.hpp>
#include <com/sun/star/uno/XInterface.hpp>
-#include <cppuhelper/implbase3.hxx>
+#include <cppuhelper/implbase.hxx>
#include <cppuhelper/supportsservice.hxx>
#include <cppuhelper/weak.hxx>
#include <osl/mutex.hxx>
@@ -41,7 +41,7 @@ namespace configmgr { namespace read_only_access {
namespace {
class Service:
- public cppu::WeakImplHelper3<
+ public cppu::WeakImplHelper<
css::lang::XServiceInfo, css::lang::XInitialization,
css::container::XHierarchicalNameAccess >
{