summaryrefslogtreecommitdiff
path: root/extensions/source/config
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-08-04 17:52:31 +0900
committerNoel Grandin <noelgrandin@gmail.com>2015-08-06 08:14:23 +0000
commit975875d53a8afa7ae2df944f7a584870c663bc6a (patch)
treeb75252bae121d6604edef4d017714f2dcac8fa86 /extensions/source/config
parentc268bfd4715186bf0623fdd757de7bf68298f3c3 (diff)
tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants in extensions. Change-Id: I45e9dc5769150181df88791b3f748002ca713c02 Reviewed-on: https://gerrit.libreoffice.org/17517 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'extensions/source/config')
-rw-r--r--extensions/source/config/ldap/ldapuserprofilebe.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/source/config/ldap/ldapuserprofilebe.hxx b/extensions/source/config/ldap/ldapuserprofilebe.hxx
index fff0b6bbb5e8..9f56e8d62daf 100644
--- a/extensions/source/config/ldap/ldapuserprofilebe.hxx
+++ b/extensions/source/config/ldap/ldapuserprofilebe.hxx
@@ -25,7 +25,7 @@
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/container/XNameAccess.hpp>
#include <com/sun/star/lang/IllegalArgumentException.hpp>
-#include <cppuhelper/compbase2.hxx>
+#include <cppuhelper/compbase.hxx>
#include "ldapaccess.hxx"
@@ -41,7 +41,7 @@ namespace container = css::container;
struct LdapDefinition;
-typedef cppu::WeakComponentImplHelper2<css::beans::XPropertySet,
+typedef cppu::WeakComponentImplHelper<css::beans::XPropertySet,
lang::XServiceInfo> BackendBase ;
struct LdapProfileMutexHolder { osl::Mutex mMutex; };