diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-08-04 17:52:31 +0900 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-08-06 08:14:23 +0000 |
commit | 975875d53a8afa7ae2df944f7a584870c663bc6a (patch) | |
tree | b75252bae121d6604edef4d017714f2dcac8fa86 /extensions/source/config/ldap | |
parent | c268bfd4715186bf0623fdd757de7bf68298f3c3 (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/ldap')
-rw-r--r-- | extensions/source/config/ldap/ldapuserprofilebe.hxx | 4 |
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; }; |