summaryrefslogtreecommitdiff
path: root/include/connectivity
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@collabora.co.uk>2023-01-16 10:41:34 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2023-01-16 10:19:16 +0000
commitf025dcc44cffc38720ea1b39c456cf562f1d144d (patch)
tree25193df86b112533546e5f000559bd1bd4180c16 /include/connectivity
parent0250d6c643f2866c4de7e3c943248ffda9205d05 (diff)
XUnoTunnel->dynamic_cast in connectivityy
Change-Id: Ibe5e87a1ef1bdc11451e8fe240d017f1ef60dfe6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145556 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/connectivity')
-rw-r--r--include/connectivity/sdbcx/VDescriptor.hxx8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/connectivity/sdbcx/VDescriptor.hxx b/include/connectivity/sdbcx/VDescriptor.hxx
index 3147a5187fa7..0f8337fd6f73 100644
--- a/include/connectivity/sdbcx/VDescriptor.hxx
+++ b/include/connectivity/sdbcx/VDescriptor.hxx
@@ -21,7 +21,6 @@
#define INCLUDED_CONNECTIVITY_SDBCX_VDESCRIPTOR_HXX
#include <comphelper/propertycontainer.hxx>
-#include <com/sun/star/lang/XUnoTunnel.hpp>
#include <comphelper/stl_types.hxx>
#include <connectivity/dbtoolsdllapi.hxx>
@@ -33,7 +32,6 @@ namespace connectivity::sdbcx
typedef ::comphelper::OPropertyContainer ODescriptor_PBASE;
class OOO_DLLPUBLIC_DBTOOLS ODescriptor
:public ODescriptor_PBASE
- ,public css::lang::XUnoTunnel
{
protected:
OUString m_Name;
@@ -63,15 +61,9 @@ namespace connectivity::sdbcx
virtual void construct();
- // XInterface
- virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type & rType ) override;
/// @throws css::uno::RuntimeException
virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes( );
- // css::lang::XUnoTunnel
- virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) override;
- static const css::uno::Sequence< sal_Int8 > & getUnoTunnelId();
-
// retrieves the ODescriptor implementation of a given UNO component, and returns its ->isNew flag
static bool isNew( const css::uno::Reference< css::uno::XInterface >& _rxDescriptor );
};