diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-01-12 12:00:04 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-01-13 12:17:19 +0000 |
commit | c89f9fe8fa0c0985af1997d3b65089a6ed0fd35e (patch) | |
tree | d2af65e2b64a68d7764401b24877db67283b50d2 /include/editeng | |
parent | 40753de837b9776dd8b33e830be0cceef83f024a (diff) |
remove XUnoTunnel from SvxUnoTextField
nothing seems to be using it
Change-Id: Ib986d2906ac10df3743a30d912bb8ec356838e20
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145462
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/editeng')
-rw-r--r-- | include/editeng/unofield.hxx | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/include/editeng/unofield.hxx b/include/editeng/unofield.hxx index 740a25a5bdb5..62a702904b08 100644 --- a/include/editeng/unofield.hxx +++ b/include/editeng/unofield.hxx @@ -20,7 +20,6 @@ #ifndef INCLUDED_EDITENG_UNOFIELD_HXX #define INCLUDED_EDITENG_UNOFIELD_HXX -#include <com/sun/star/lang/XUnoTunnel.hpp> #include <com/sun/star/beans/XPropertySet.hpp> #include <com/sun/star/text/XTextField.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> @@ -46,8 +45,7 @@ class EDITENG_DLLPUBLIC SvxUnoTextField final : public cppu::BaseMutex, public ::cppu::OComponentHelper, public css::text::XTextField, public css::beans::XPropertySet, - public css::lang::XServiceInfo, - public css::lang::XUnoTunnel + public css::lang::XServiceInfo { css::uno::Reference< css::text::XTextRange > mxAnchor; const SfxItemPropertySet* mpPropSet; @@ -63,9 +61,6 @@ public: // Internal std::unique_ptr<SvxFieldData> CreateFieldData() const noexcept; - static const css::uno::Sequence< sal_Int8 > & getUnoTunnelId() noexcept; - virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) override; - // css::uno::XInterface virtual css::uno::Any SAL_CALL queryAggregation( const css::uno::Type & rType ) override; virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type & rType ) override; |