Kaydet (Commit) c24d2936 authored tarafından Noel Grandin's avatar Noel Grandin

loplugin:unnecessaryvirtual

Change-Id: Id3f0bbcae731d777ac7c1fbc9f020ff35833864b
Reviewed-on: https://gerrit.libreoffice.org/40323Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
üst 4bb2bca0
...@@ -66,7 +66,7 @@ namespace connectivity ...@@ -66,7 +66,7 @@ namespace connectivity
public: public:
explicit OEvoabConnection( OEvoabDriver& _rDriver ); explicit OEvoabConnection( OEvoabDriver& _rDriver );
/// @throws css::sdbc::SQLException /// @throws css::sdbc::SQLException
virtual void construct(const OUString& _rUrl,const css::uno::Sequence< css::beans::PropertyValue >& _rInfo ); void construct(const OUString& _rUrl,const css::uno::Sequence< css::beans::PropertyValue >& _rInfo );
OString const & getPassword() { return m_aPassword; } OString const & getPassword() { return m_aPassword; }
void setPassword( OString const & aStr ) { m_aPassword = aStr; } void setPassword( OString const & aStr ) { m_aPassword = aStr; }
...@@ -85,7 +85,7 @@ namespace connectivity ...@@ -85,7 +85,7 @@ namespace connectivity
DECLARE_SERVICE_INFO(); DECLARE_SERVICE_INFO();
// XConnection // XConnection
virtual css::uno::Reference< css::sdbcx::XTablesSupplier > createCatalog(); css::uno::Reference< css::sdbcx::XTablesSupplier > createCatalog();
virtual css::uno::Reference< css::sdbc::XStatement > SAL_CALL createStatement( ) override; virtual css::uno::Reference< css::sdbc::XStatement > SAL_CALL createStatement( ) override;
virtual css::uno::Reference< css::sdbc::XPreparedStatement > SAL_CALL prepareStatement( const OUString& sql ) override; virtual css::uno::Reference< css::sdbc::XPreparedStatement > SAL_CALL prepareStatement( const OUString& sql ) override;
virtual css::uno::Reference< css::sdbc::XPreparedStatement > SAL_CALL prepareCall( const OUString& sql ) override; virtual css::uno::Reference< css::sdbc::XPreparedStatement > SAL_CALL prepareCall( const OUString& sql ) override;
......
...@@ -67,7 +67,6 @@ namespace frm ...@@ -67,7 +67,6 @@ namespace frm
public: public:
ElementDescription( ); ElementDescription( );
virtual ~ElementDescription();
private: private:
ElementDescription( const ElementDescription& ) = delete; ElementDescription( const ElementDescription& ) = delete;
......
...@@ -172,10 +172,6 @@ ElementDescription::ElementDescription( ) ...@@ -172,10 +172,6 @@ ElementDescription::ElementDescription( )
} }
ElementDescription::~ElementDescription()
{
}
OInterfaceContainer::OInterfaceContainer( OInterfaceContainer::OInterfaceContainer(
const Reference<XComponentContext>& _rxContext, const Reference<XComponentContext>& _rxContext,
::osl::Mutex& _rMutex, ::osl::Mutex& _rMutex,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment