summaryrefslogtreecommitdiff
path: root/extensions/source/abpilot/unodialogabp.hxx
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2024-12-07 01:34:27 +0500
committerMike Kaganski <mike.kaganski@collabora.com>2024-12-07 14:34:46 +0100
commit259480c5e1a387e01618dcd772e0ecdeead9b88b (patch)
tree101c8965a64780a0531a386ddac9bf1785cbfe71 /extensions/source/abpilot/unodialogabp.hxx
parent734f80b66947210861ab2beb216e0dc327959e18 (diff)
Simplify OABSPilotUno
Change-Id: Id722754aadecbb0cdb0a35fd8b3a7ac24e21b546 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/178026 Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'extensions/source/abpilot/unodialogabp.hxx')
-rw-r--r--extensions/source/abpilot/unodialogabp.hxx14
1 files changed, 2 insertions, 12 deletions
diff --git a/extensions/source/abpilot/unodialogabp.hxx b/extensions/source/abpilot/unodialogabp.hxx
index b8bd940afa04..b07f0b2d870b 100644
--- a/extensions/source/abpilot/unodialogabp.hxx
+++ b/extensions/source/abpilot/unodialogabp.hxx
@@ -28,12 +28,11 @@
namespace abp
{
class OABSPilotUno;
- typedef ::cppu::ImplHelper1< css::task::XJob > OABSPilotUno_JBase;
+ typedef cppu::ImplInheritanceHelper<svt::OGenericUnoDialog, css::task::XJob> OABSPilotUno_JBase;
typedef ::comphelper::OPropertyArrayUsageHelper< OABSPilotUno > OABSPilotUno_PBase;
/// the UNO wrapper for the address book source pilot
class OABSPilotUno
- : public svt::OGenericUnoDialog
- , public OABSPilotUno_JBase
+ : public OABSPilotUno_JBase
, public OABSPilotUno_PBase
{
OUString m_sDataSourceName;
@@ -42,15 +41,6 @@ namespace abp
explicit OABSPilotUno(const css::uno::Reference< css::uno::XComponentContext >& _rxORB);
private:
- // XInterface (disambiguation)
- virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type& aType ) override;
- virtual void SAL_CALL acquire( ) noexcept override;
- virtual void SAL_CALL release( ) noexcept override;
-
- // XTypeProvider
- virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes( ) override;
- virtual css::uno::Sequence<sal_Int8> SAL_CALL getImplementationId( ) override;
-
// XServiceInfo
virtual OUString SAL_CALL getImplementationName() override;
virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override;