diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-07-30 16:41:22 +0900 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-30 13:15:51 +0000 |
commit | e646e614e26d647c6b7ce6918b8dddad71568f96 (patch) | |
tree | 5451c01d4a6210bb8c4696acb07526a6465f391e /editeng/source/accessibility/AccessibleHyperlink.hxx | |
parent | 517e5d1e3339133c3a91d801fdb85f1d70057883 (diff) |
tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants for editeng.
Change-Id: I28373dd31b8b922f59b99bf1c12faa31c72b9906
Reviewed-on: https://gerrit.libreoffice.org/17416
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'editeng/source/accessibility/AccessibleHyperlink.hxx')
-rw-r--r-- | editeng/source/accessibility/AccessibleHyperlink.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editeng/source/accessibility/AccessibleHyperlink.hxx b/editeng/source/accessibility/AccessibleHyperlink.hxx index fe0ef70e91e4..507f53210a45 100644 --- a/editeng/source/accessibility/AccessibleHyperlink.hxx +++ b/editeng/source/accessibility/AccessibleHyperlink.hxx @@ -21,7 +21,7 @@ #define INCLUDED_EDITENG_SOURCE_ACCESSIBILITY_ACCESSIBLEHYPERLINK_HXX #include <cppuhelper/weakref.hxx> -#include <cppuhelper/compbase1.hxx> +#include <cppuhelper/implbase.hxx> #include <cppuhelper/typeprovider.hxx> #include <cppuhelper/interfacecontainer.hxx> @@ -35,7 +35,7 @@ class SvxAccessibleTextAdapter; namespace accessibility { - class AccessibleHyperlink : public ::cppu::WeakImplHelper1< ::com::sun::star::accessibility::XAccessibleHyperlink > + class AccessibleHyperlink : public ::cppu::WeakImplHelper< ::com::sun::star::accessibility::XAccessibleHyperlink > { private: |