summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/expand
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-09-09 12:25:25 +0900
committerNoel Grandin <noelgrandin@gmail.com>2015-09-09 08:14:20 +0000
commit5cce78f9a52050e15a63761bd8af36075b1a8945 (patch)
tree4130e7366fb7e1a1bf507ca543c63264be01b8be /ucb/source/ucp/expand
parenta9c83ee37561e0dbf5f1ad57a4de7c179785c45b (diff)
ucb: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants. Change-Id: I0e4c7e26af86806e75bb75b7eb6c70b57e1c9514 Reviewed-on: https://gerrit.libreoffice.org/18427 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'ucb/source/ucp/expand')
-rw-r--r--ucb/source/ucp/expand/ucpexpand.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/ucb/source/ucp/expand/ucpexpand.cxx b/ucb/source/ucp/expand/ucpexpand.cxx
index 6feebd621635..2ea5701ddaaf 100644
--- a/ucb/source/ucp/expand/ucpexpand.cxx
+++ b/ucb/source/ucp/expand/ucpexpand.cxx
@@ -20,7 +20,7 @@
#include "rtl/uri.hxx"
#include "osl/mutex.hxx"
-#include "cppuhelper/compbase2.hxx"
+#include <cppuhelper/compbase.hxx>
#include "cppuhelper/factory.hxx"
#include "cppuhelper/implementationentry.hxx"
#include <cppuhelper/supportsservice.hxx>
@@ -47,7 +47,7 @@ struct MutexHolder
mutable ::osl::Mutex m_mutex;
};
-typedef ::cppu::WeakComponentImplHelper2<
+typedef ::cppu::WeakComponentImplHelper<
lang::XServiceInfo, ucb::XContentProvider > t_impl_helper;