summaryrefslogtreecommitdiff
path: root/oox/source/core
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-01-25 08:21:03 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-01-25 08:15:36 +0000
commitef2b4342e9f8a887bb840d8a6c875125139d433a (patch)
treecf261b63e7cceef509dcaf7244e08ba83ea2bbe2 /oox/source/core
parent3c6b7c8b43d23dd7de46c02ee2cfa5bd2a97f168 (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 'oox/source/core')
-rw-r--r--oox/source/core/xmlfilterbase.cxx5
1 files changed, 0 insertions, 5 deletions
diff --git a/oox/source/core/xmlfilterbase.cxx b/oox/source/core/xmlfilterbase.cxx
index 21f0b505e986..7d1651c56780 100644
--- a/oox/source/core/xmlfilterbase.cxx
+++ b/oox/source/core/xmlfilterbase.cxx
@@ -183,7 +183,6 @@ struct XmlFilterBaseImpl
/// @throws RuntimeException
explicit XmlFilterBaseImpl( const Reference< XComponentContext >& rxContext ) throw( RuntimeException );
- ~XmlFilterBaseImpl();
};
XmlFilterBaseImpl::XmlFilterBaseImpl( const Reference< XComponentContext >& rxContext ) throw( RuntimeException ) :
@@ -195,10 +194,6 @@ XmlFilterBaseImpl::XmlFilterBaseImpl( const Reference< XComponentContext >& rxCo
registerNamespaces(maFastParser);
}
-XmlFilterBaseImpl::~XmlFilterBaseImpl()
-{
-}
-
XmlFilterBase::XmlFilterBase( const Reference< XComponentContext >& rxContext ) throw( RuntimeException ) :
FilterBase( rxContext ),
mxImpl( new XmlFilterBaseImpl( rxContext ) ),