summaryrefslogtreecommitdiffstats
path: root/extensions/source/bibliography/datman.hxx
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/bibliography/datman.hxx
parentadd script to find duplicated SID's (diff)
downloadcore-975875d53a8afa7ae2df944f7a584870c663bc6a.tar.gz
core-975875d53a8afa7ae2df944f7a584870c663bc6a.zip
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/bibliography/datman.hxx')
-rw-r--r--extensions/source/bibliography/datman.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/extensions/source/bibliography/datman.hxx b/extensions/source/bibliography/datman.hxx
index fb5db53f5a28..854820f34fda 100644
--- a/extensions/source/bibliography/datman.hxx
+++ b/extensions/source/bibliography/datman.hxx
@@ -25,14 +25,14 @@
#include <com/sun/star/sdbc/XResultSet.hpp>
#include <com/sun/star/sdb/XSingleSelectQueryComposer.hpp>
#include <com/sun/star/form/runtime/XFormController.hpp>
-#include <cppuhelper/compbase2.hxx>
+#include <cppuhelper/compbase.hxx>
#include <cppuhelper/interfacecontainer.h>
#include <com/sun/star/form/XLoadable.hpp>
#include <comphelper/broadcasthelper.hxx>
// #100312# --------------------
#include <com/sun/star/frame/XDispatchProviderInterceptor.hpp>
#include <com/sun/star/frame/XDispatchProviderInterception.hpp>
-#include <cppuhelper/implbase1.hxx>
+#include <cppuhelper/implbase.hxx>
#include <vcl/vclptr.hxx>
namespace vcl { class Window; }
@@ -50,7 +50,7 @@ struct BibDBDescriptor;
// #100312# ---------------------
class BibInterceptorHelper
- :public cppu::WeakImplHelper1< ::com::sun::star::frame::XDispatchProviderInterceptor >
+ :public cppu::WeakImplHelper< ::com::sun::star::frame::XDispatchProviderInterceptor >
{
private:
::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatchProvider > xMasterDispatchProvider;
@@ -76,7 +76,7 @@ public:
virtual void SAL_CALL setMasterDispatchProvider( const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatchProvider >& xNewMasterDispatchProvider ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
};
-typedef cppu::WeakComponentImplHelper2 < ::com::sun::star::beans::XPropertyChangeListener
+typedef cppu::WeakComponentImplHelper < ::com::sun::star::beans::XPropertyChangeListener
, ::com::sun::star::form::XLoadable
> BibDataManager_Base;
class BibDataManager