diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-01-25 08:21:03 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-01-25 08:15:36 +0000 |
commit | ef2b4342e9f8a887bb840d8a6c875125139d433a (patch) | |
tree | cf261b63e7cceef509dcaf7244e08ba83ea2bbe2 /package | |
parent | 3c6b7c8b43d23dd7de46c02ee2cfa5bd2a97f168 (diff) |
loplugin: unnecessary destructor oox..sax
Change-Id: Ie12bfabc92bce04d702f3e77aa5896366e49245e
Reviewed-on: https://gerrit.libreoffice.org/33509
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'package')
-rw-r--r-- | package/source/manifest/ManifestImport.hxx | 3 | ||||
-rw-r--r-- | package/source/xstor/xstorage.cxx | 6 |
2 files changed, 0 insertions, 9 deletions
diff --git a/package/source/manifest/ManifestImport.hxx b/package/source/manifest/ManifestImport.hxx index 3b2302a8bc83..1263af34a577 100644 --- a/package/source/manifest/ManifestImport.hxx +++ b/package/source/manifest/ManifestImport.hxx @@ -44,9 +44,6 @@ struct ManifestScopeEntry , m_aNamespaces( aNamespaces ) , m_bValid( true ) {} - - ~ManifestScopeEntry() - {} }; typedef ::std::vector< ManifestScopeEntry > ManifestStack; diff --git a/package/source/xstor/xstorage.cxx b/package/source/xstor/xstorage.cxx index 21ac47d5c150..e43241b40b95 100644 --- a/package/source/xstor/xstorage.cxx +++ b/package/source/xstor/xstorage.cxx @@ -92,8 +92,6 @@ struct StorInternalData_Impl , m_bReadOnlyWrap( bReadOnlyWrap ) , m_pSubElDispListener() {} - - ~StorInternalData_Impl(); }; // static @@ -158,10 +156,6 @@ uno::Reference< io::XInputStream > GetSeekableTempCopy( const uno::Reference< io return xTempIn; } -StorInternalData_Impl::~StorInternalData_Impl() -{ -} - SotElement_Impl::SotElement_Impl( const OUString& rName, bool bStor, bool bNew ) : m_aName( rName ) , m_aOriginalName( rName ) |