summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-01-25 10:21:25 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-01-25 11:29:08 +0000
commit58868eb9edb819db1684ae04988a77897c62ab59 (patch)
tree1d67261720b36a5ba45e477e151805a7aa692e20 /svl
parent0e726874b4bd111f84483f4a4f6592c8ecec6112 (diff)
loplugin: unnecessary destructor svl..svtools
Change-Id: Ie96dda7194c83ba88693f8c91899c732d704a4bd Reviewed-on: https://gerrit.libreoffice.org/33515 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svl')
-rw-r--r--svl/source/items/slstitm.cxx5
-rw-r--r--svl/source/items/stylepool.cxx4
-rw-r--r--svl/source/misc/inethist.cxx5
-rw-r--r--svl/source/undo/undo.cxx4
4 files changed, 0 insertions, 18 deletions
diff --git a/svl/source/items/slstitm.cxx b/svl/source/items/slstitm.cxx
index ea8ee3fefcfa..8e8bca223a2e 100644
--- a/svl/source/items/slstitm.cxx
+++ b/svl/source/items/slstitm.cxx
@@ -34,14 +34,9 @@ public:
std::vector<OUString> aList;
SfxImpStringList() {}
- ~SfxImpStringList();
};
-SfxImpStringList::~SfxImpStringList()
-{
-}
-
SfxStringListItem::SfxStringListItem()
{
}
diff --git a/svl/source/items/stylepool.cxx b/svl/source/items/stylepool.cxx
index 2fbee928d367..cfc61ab4ed0e 100644
--- a/svl/source/items/stylepool.cxx
+++ b/svl/source/items/stylepool.cxx
@@ -362,10 +362,6 @@ public:
"<StylePoolImpl::StylePoolImpl(..)> - <SfxItemSet::Clone( sal_False )> does not work as excepted - <mpIgnorableItems> is not empty." );
}
- ~StylePoolImpl()
- {
- }
-
std::shared_ptr<SfxItemSet> insertItemSet( const SfxItemSet& rSet );
// #i86923#
diff --git a/svl/source/misc/inethist.cxx b/svl/source/misc/inethist.cxx
index 3eecd4b3288e..d84a2622c41c 100644
--- a/svl/source/misc/inethist.cxx
+++ b/svl/source/misc/inethist.cxx
@@ -150,7 +150,6 @@ class INetURLHistory_Impl
public:
INetURLHistory_Impl();
- ~INetURLHistory_Impl();
INetURLHistory_Impl(const INetURLHistory_Impl&) = delete;
INetURLHistory_Impl& operator=(const INetURLHistory_Impl&) = delete;
@@ -165,10 +164,6 @@ INetURLHistory_Impl::INetURLHistory_Impl()
initialize();
}
-INetURLHistory_Impl::~INetURLHistory_Impl()
-{
-}
-
void INetURLHistory_Impl::initialize()
{
m_aHead.initialize();
diff --git a/svl/source/undo/undo.cxx b/svl/source/undo/undo.cxx
index 116e3dff647f..4636021b5b75 100644
--- a/svl/source/undo/undo.cxx
+++ b/svl/source/undo/undo.cxx
@@ -249,10 +249,6 @@ struct SfxUndoManager_Data
pActUndoArray = pUndoArray.get();
}
- ~SfxUndoManager_Data()
- {
- }
-
// Copy assignment is forbidden and not implemented.
SfxUndoManager_Data (const SfxUndoManager_Data &) = delete;
SfxUndoManager_Data & operator= (const SfxUndoManager_Data &) = delete;