diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-08-11 19:58:34 +0900 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-08-11 13:30:17 +0000 |
commit | 14bead7f42427bbd4fbc9f3210ab675959653998 (patch) | |
tree | 530c8bb0527a86998b8c0a9412bbee1f5e7284ca /forms/source/richtext/featuredispatcher.hxx | |
parent | 647b5aecd4c3facc302df33386451dda732aab98 (diff) |
forms: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants.
Change-Id: Ia4f56692c9beddda13ee948ab8bbc1ee95098fbf
Reviewed-on: https://gerrit.libreoffice.org/17648
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'forms/source/richtext/featuredispatcher.hxx')
-rw-r--r-- | forms/source/richtext/featuredispatcher.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/forms/source/richtext/featuredispatcher.hxx b/forms/source/richtext/featuredispatcher.hxx index df78405db874..03a7891e4f7f 100644 --- a/forms/source/richtext/featuredispatcher.hxx +++ b/forms/source/richtext/featuredispatcher.hxx @@ -23,7 +23,7 @@ #include <com/sun/star/frame/XDispatch.hpp> #include <com/sun/star/lang/DisposedException.hpp> #include <cppuhelper/interfacecontainer.hxx> -#include <cppuhelper/implbase1.hxx> +#include <cppuhelper/implbase.hxx> #include <comphelper/broadcasthelper.hxx> class EditView; @@ -31,7 +31,7 @@ class EditView; namespace frm { - typedef ::cppu::WeakImplHelper1 < ::com::sun::star::frame::XDispatch + typedef ::cppu::WeakImplHelper < ::com::sun::star::frame::XDispatch > ORichTextFeatureDispatcher_Base; class ORichTextFeatureDispatcher :public ::comphelper::OBaseMutex |