loplugin:unnecessaryoverride (dtors) in forms

Change-Id: Ia6787aa9dc7963b1e44604f22bfc95e0333a7f79
This commit is contained in:
Stephan Bergmann
2016-12-05 09:03:49 +01:00
parent 3ef5bf5a0a
commit ccda3f37a4
2 changed files with 0 additions and 10 deletions

View File

@@ -42,7 +42,6 @@ public:
ImgProdLockBytes( SvStream* pStm, bool bOwner );
explicit ImgProdLockBytes( css::uno::Reference< css::io::XInputStream > & rStreamRef );
virtual ~ImgProdLockBytes() override;
virtual ErrCode ReadAt( sal_uInt64 nPos, void* pBuffer, std::size_t nCount, std::size_t * pRead ) const override;
virtual ErrCode WriteAt( sal_uInt64 nPos, const void* pBuffer, std::size_t nCount, std::size_t * pWritten ) override;
@@ -83,12 +82,6 @@ ImgProdLockBytes::ImgProdLockBytes( css::uno::Reference< css::io::XInputStream >
}
}
ImgProdLockBytes::~ImgProdLockBytes()
{
}
ErrCode ImgProdLockBytes::ReadAt(sal_uInt64 const nPos,
void* pBuffer, std::size_t nCount, std::size_t * pRead) const
{

View File

@@ -59,9 +59,6 @@ namespace frm
{
impl_init_nothrow( _rContext, _rxDocument );
}
virtual ~DocumentCommandImageProvider() override
{
}
// ICommandImageProvider
virtual CommandImages getCommandImages( const css::uno::Sequence< OUString >& _rCommandURLs, const bool _bLarge ) const override;