summaryrefslogtreecommitdiff
path: root/unoxml/source/rdf/librdf_repository.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-09-10 12:16:49 +0900
committerMichael Stahl <mstahl@redhat.com>2015-09-10 13:10:52 +0000
commit9303e87bb6839afc09d4db543ff17f2fb5142359 (patch)
treecf2191b46d819fa7e894c56dd759227c9334c41e /unoxml/source/rdf/librdf_repository.cxx
parenta9fa776cdaacac30fd8df22d85aab30ef70c9776 (diff)
unoxml: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants. Change-Id: Id753717b228061c810a0122e551326ab001949a9 Reviewed-on: https://gerrit.libreoffice.org/18460 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'unoxml/source/rdf/librdf_repository.cxx')
-rw-r--r--unoxml/source/rdf/librdf_repository.cxx11
1 files changed, 5 insertions, 6 deletions
diff --git a/unoxml/source/rdf/librdf_repository.cxx b/unoxml/source/rdf/librdf_repository.cxx
index 1dc5eaf5904e..c2603f34efb4 100644
--- a/unoxml/source/rdf/librdf_repository.cxx
+++ b/unoxml/source/rdf/librdf_repository.cxx
@@ -54,8 +54,7 @@
#include <rtl/ref.hxx>
#include <rtl/ustring.hxx>
#include <osl/diagnose.h>
-#include <cppuhelper/implbase1.hxx>
-#include <cppuhelper/implbase3.hxx>
+#include <cppuhelper/implbase.hxx>
#include <cppuhelper/basemutex.hxx>
#include <cppuhelper/supportsservice.hxx>
@@ -273,7 +272,7 @@ private:
class librdf_Repository:
private boost::noncopyable,
// private ::cppu::BaseMutex,
- public ::cppu::WeakImplHelper3<
+ public ::cppu::WeakImplHelper<
lang::XServiceInfo,
rdf::XDocumentRepository,
lang::XInitialization>
@@ -457,7 +456,7 @@ private:
*/
class librdf_GraphResult:
private boost::noncopyable,
- public ::cppu::WeakImplHelper1<
+ public ::cppu::WeakImplHelper<
container::XEnumeration>
{
public:
@@ -571,7 +570,7 @@ throw (uno::RuntimeException, container::NoSuchElementException,
*/
class librdf_QuerySelectResult:
private boost::noncopyable,
- public ::cppu::WeakImplHelper1<
+ public ::cppu::WeakImplHelper<
rdf::XQuerySelectResult>
{
public:
@@ -697,7 +696,7 @@ librdf_QuerySelectResult::getBindingNames() throw (uno::RuntimeException, std::e
*/
class librdf_NamedGraph:
private boost::noncopyable,
- public ::cppu::WeakImplHelper1<
+ public ::cppu::WeakImplHelper<
rdf::XNamedGraph>
{
public: