summaryrefslogtreecommitdiff
path: root/ucbhelper
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-09-15 10:08:55 +0900
committerNoel Grandin <noelgrandin@gmail.com>2015-09-15 06:19:28 +0000
commitee7da352b885cfead32abb3fd111acead0c32816 (patch)
tree1609401dc01cc76a53a65b033827cfbe42fd1d0b /ucbhelper
parent5bbff06137a87e97260a188f6745cf2a227f15cf (diff)
Resolves: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants. Change-Id: I7154f9472f02fdf47d27ba715db55bb1ec669a8a Reviewed-on: https://gerrit.libreoffice.org/18580 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'ucbhelper')
-rw-r--r--ucbhelper/source/client/content.cxx4
-rw-r--r--ucbhelper/source/client/proxydecider.cxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/ucbhelper/source/client/content.cxx b/ucbhelper/source/client/content.cxx
index 1f38a8cbc8d0..8edaa5a1cd6a 100644
--- a/ucbhelper/source/client/content.cxx
+++ b/ucbhelper/source/client/content.cxx
@@ -27,7 +27,7 @@
#include <salhelper/simplereferenceobject.hxx>
#include <cppuhelper/weak.hxx>
-#include <cppuhelper/implbase1.hxx>
+#include <cppuhelper/implbase.hxx>
#include <com/sun/star/ucb/CheckinArgument.hpp>
#include <com/sun/star/ucb/ContentCreationError.hpp>
#include <com/sun/star/ucb/XCommandEnvironment.hpp>
@@ -76,7 +76,7 @@ using namespace com::sun::star::uno;
namespace ucbhelper
{
-class EmptyInputStream : public ::cppu::WeakImplHelper1< XInputStream >
+class EmptyInputStream : public ::cppu::WeakImplHelper< XInputStream >
{
public:
virtual sal_Int32 SAL_CALL readBytes(
diff --git a/ucbhelper/source/client/proxydecider.cxx b/ucbhelper/source/client/proxydecider.cxx
index 4b6bda7c068d..ed73a86fd85b 100644
--- a/ucbhelper/source/client/proxydecider.cxx
+++ b/ucbhelper/source/client/proxydecider.cxx
@@ -31,7 +31,7 @@
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/util/XChangesListener.hpp>
#include <com/sun/star/util/XChangesNotifier.hpp>
-#include <cppuhelper/implbase1.hxx>
+#include <cppuhelper/implbase.hxx>
#include "ucbhelper/proxydecider.hxx"
using namespace com::sun::star;
@@ -116,7 +116,7 @@ public:
class InternetProxyDecider_Impl :
- public cppu::WeakImplHelper1< util::XChangesListener >
+ public cppu::WeakImplHelper< util::XChangesListener >
{
mutable osl::Mutex m_aMutex;
InternetProxyServer m_aHttpProxy;