diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-08-29 07:48:41 +0900 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-09-03 17:53:31 +0000 |
commit | f3c7e6953675f4ed85a5212a6af3ee189400f34e (patch) | |
tree | 5e0cecee96c3d90b095c3dda64033f5376cc226e /scripting/source/basprov/basscript.hxx | |
parent | 6e88d63829ad46c1cbb5c0c5b40c578430713817 (diff) |
scripting: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants.
Change-Id: I2a59d42efbb1aeef5078d0b0744b5a3c0559affa
Reviewed-on: https://gerrit.libreoffice.org/18123
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'scripting/source/basprov/basscript.hxx')
-rw-r--r-- | scripting/source/basprov/basscript.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripting/source/basprov/basscript.hxx b/scripting/source/basprov/basscript.hxx index 203a3f691e2e..0cf87fbf51b1 100644 --- a/scripting/source/basprov/basscript.hxx +++ b/scripting/source/basprov/basscript.hxx @@ -23,7 +23,7 @@ #include "bcholder.hxx" #include <com/sun/star/script/provider/XScript.hpp> #include <com/sun/star/document/XScriptInvocationContext.hpp> -#include <cppuhelper/implbase1.hxx> +#include <cppuhelper/implbase.hxx> #include <comphelper/proparrhlp.hxx> #include <comphelper/propertycontainer.hxx> #include <basic/sbmeth.hxx> @@ -40,7 +40,7 @@ namespace basprov // class BasicScriptImpl - typedef ::cppu::WeakImplHelper1< + typedef ::cppu::WeakImplHelper< ::com::sun::star::script::provider::XScript > BasicScriptImpl_BASE; |