summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-01-26 10:57:01 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-01-26 10:07:23 +0000
commita49cbc58933c30d82bab458f2ed5af622bea4690 (patch)
tree7a6f2e7b9cd37c8cfee5b17e63bc773ddef4771c /unotools
parent788368633a19bb605fd36ae413d1d70bfc0de875 (diff)
loplugin: unnecessary destructor test..unotools
Change-Id: I1fd8a3f39b875d1920759f42e37f4c9d6785d62e Reviewed-on: https://gerrit.libreoffice.org/33573 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'unotools')
-rw-r--r--unotools/source/accessibility/accessiblerelationsethelper.cxx5
-rw-r--r--unotools/source/accessibility/accessiblestatesethelper.cxx5
-rw-r--r--unotools/source/config/historyoptions.cxx5
3 files changed, 0 insertions, 15 deletions
diff --git a/unotools/source/accessibility/accessiblerelationsethelper.cxx b/unotools/source/accessibility/accessiblerelationsethelper.cxx
index fcd42ab0c316..e25719c8bb2c 100644
--- a/unotools/source/accessibility/accessiblerelationsethelper.cxx
+++ b/unotools/source/accessibility/accessiblerelationsethelper.cxx
@@ -31,7 +31,6 @@ class AccessibleRelationSetHelperImpl
public:
AccessibleRelationSetHelperImpl();
AccessibleRelationSetHelperImpl(const AccessibleRelationSetHelperImpl& rImpl);
- ~AccessibleRelationSetHelperImpl();
/// @throws uno::RuntimeException
sal_Int32 getRelationCount( )
@@ -64,10 +63,6 @@ AccessibleRelationSetHelperImpl::AccessibleRelationSetHelperImpl(const Accessibl
{
}
-AccessibleRelationSetHelperImpl::~AccessibleRelationSetHelperImpl()
-{
-}
-
sal_Int32 AccessibleRelationSetHelperImpl::getRelationCount( )
throw (uno::RuntimeException)
{
diff --git a/unotools/source/accessibility/accessiblestatesethelper.cxx b/unotools/source/accessibility/accessiblestatesethelper.cxx
index a6c1d9c67d2f..0b669c6cdbbe 100644
--- a/unotools/source/accessibility/accessiblestatesethelper.cxx
+++ b/unotools/source/accessibility/accessiblestatesethelper.cxx
@@ -34,7 +34,6 @@ class AccessibleStateSetHelperImpl
public:
AccessibleStateSetHelperImpl();
AccessibleStateSetHelperImpl(const AccessibleStateSetHelperImpl& rImpl);
- ~AccessibleStateSetHelperImpl();
/// @throws uno::RuntimeException
bool IsEmpty () const
@@ -68,10 +67,6 @@ AccessibleStateSetHelperImpl::AccessibleStateSetHelperImpl(const AccessibleState
{
}
-AccessibleStateSetHelperImpl::~AccessibleStateSetHelperImpl()
-{
-}
-
inline bool AccessibleStateSetHelperImpl::IsEmpty () const
throw (uno::RuntimeException)
{
diff --git a/unotools/source/config/historyoptions.cxx b/unotools/source/config/historyoptions.cxx
index 13810fbfd4d7..759e7b414d0c 100644
--- a/unotools/source/config/historyoptions.cxx
+++ b/unotools/source/config/historyoptions.cxx
@@ -67,7 +67,6 @@ class SvtHistoryOptions_Impl
{
public:
SvtHistoryOptions_Impl();
- ~SvtHistoryOptions_Impl();
/// Returns the maximum size of the internal lists, ie. the capacity not the size.
sal_uInt32 GetCapacity(EHistoryType eHistory);
@@ -122,10 +121,6 @@ SvtHistoryOptions_Impl::SvtHistoryOptions_Impl()
}
}
-SvtHistoryOptions_Impl::~SvtHistoryOptions_Impl()
-{
-}
-
sal_uInt32 SvtHistoryOptions_Impl::GetCapacity(EHistoryType eHistory)
{
uno::Reference<beans::XPropertySet> xListAccess(m_xCommonXCU, uno::UNO_QUERY);