summaryrefslogtreecommitdiff
path: root/comphelper/source/misc/componentmodule.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-01-23 14:04:56 +0200
committerCaolán McNamara <caolanm@redhat.com>2017-01-23 16:59:48 +0000
commita90a4810aeefbad270978ade194ced3b09d50449 (patch)
tree5545c4d42205a39a08ae085681ec8e04cb427cf5 /comphelper/source/misc/componentmodule.cxx
parent6d9e4803806d1474039e25092a3c1ee268b0b9f8 (diff)
loplugin: unnecessary destructor: comphelper..desktop
Change-Id: I9df4cb6a4b1734dac6141d6b0ee7a09e3e05f92e Reviewed-on: https://gerrit.libreoffice.org/33453 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'comphelper/source/misc/componentmodule.cxx')
-rw-r--r--comphelper/source/misc/componentmodule.cxx5
1 files changed, 0 insertions, 5 deletions
diff --git a/comphelper/source/misc/componentmodule.cxx b/comphelper/source/misc/componentmodule.cxx
index 074515e83c40..3ff9e4a72639 100644
--- a/comphelper/source/misc/componentmodule.cxx
+++ b/comphelper/source/misc/componentmodule.cxx
@@ -43,17 +43,12 @@ namespace comphelper
ComponentDescriptions m_aRegisteredComponents;
OModuleImpl();
- ~OModuleImpl();
};
OModuleImpl::OModuleImpl()
{
}
- OModuleImpl::~OModuleImpl()
- {
- }
-
OModule::OModule()
: m_nClients(0)
, m_pImpl(new OModuleImpl)