summaryrefslogtreecommitdiff
path: root/xmlscript/source/xmlmod_imexp
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-09-14 10:01:53 +0900
committerNoel Grandin <noelgrandin@gmail.com>2015-09-14 06:25:52 +0000
commit06962719b172bbc55d77bb13295dff25826bb963 (patch)
tree7472e4e0be21e62fbed34e7aaba1a568858f62ca /xmlscript/source/xmlmod_imexp
parent889d825879d1f044986c00a8038196bdb53e50dd (diff)
xmlscript: tdf#88206 replace cppu::WeakImplHelper*
with the variadic variants. Change-Id: Ic05094dea12c0aa66dc97a7e403a3abec9e25785 Reviewed-on: https://gerrit.libreoffice.org/18556 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'xmlscript/source/xmlmod_imexp')
-rw-r--r--xmlscript/source/xmlmod_imexp/imp_share.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmlscript/source/xmlmod_imexp/imp_share.hxx b/xmlscript/source/xmlmod_imexp/imp_share.hxx
index ddcbea3f6459..2f33d80dcf5c 100644
--- a/xmlscript/source/xmlmod_imexp/imp_share.hxx
+++ b/xmlscript/source/xmlmod_imexp/imp_share.hxx
@@ -22,7 +22,7 @@
#include <xmlscript/xmlmod_imexp.hxx>
-#include <cppuhelper/implbase1.hxx>
+#include <cppuhelper/implbase.hxx>
#include <rtl/ustrbuf.hxx>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
@@ -42,7 +42,7 @@ namespace xmlscript
// Script module import
struct ModuleImport
- : public ::cppu::WeakImplHelper1< css::xml::input::XRoot >
+ : public ::cppu::WeakImplHelper< css::xml::input::XRoot >
{
friend class ModuleElement;
@@ -82,7 +82,7 @@ public:
};
class ModuleElement
- : public ::cppu::WeakImplHelper1< css::xml::input::XElement >
+ : public ::cppu::WeakImplHelper< css::xml::input::XElement >
{
protected:
ModuleImport * _pImport;