summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/test/testinteractionhandler.hxx3
-rw-r--r--include/toolkit/controls/unocontrols.hxx1
-rw-r--r--include/tools/errinf.hxx2
-rw-r--r--include/tools/weakbase.h2
-rw-r--r--include/tools/weakbase.hxx5
-rw-r--r--include/unotools/confignode.hxx3
-rw-r--r--toolkit/source/awt/stylesettings.cxx4
-rw-r--r--toolkit/source/awt/vclxwindow.cxx7
-rw-r--r--toolkit/source/controls/unocontrolcontainer.cxx6
-rw-r--r--ucb/source/ucp/cmis/cmis_datasupplier.hxx4
-rw-r--r--ucb/source/ucp/ext/ucpext_datasupplier.cxx6
-rw-r--r--ucb/source/ucp/webdav-neon/DAVException.hxx1
-rw-r--r--ucb/source/ucp/webdav-neon/LinkSequence.cxx1
-rw-r--r--ucb/source/ucp/webdav-neon/LockEntrySequence.cxx1
-rw-r--r--ucb/source/ucp/webdav-neon/LockSequence.cxx2
-rw-r--r--unotools/source/accessibility/accessiblerelationsethelper.cxx5
-rw-r--r--unotools/source/accessibility/accessiblestatesethelper.cxx5
-rw-r--r--unotools/source/config/historyoptions.cxx5
18 files changed, 0 insertions, 63 deletions
diff --git a/include/test/testinteractionhandler.hxx b/include/test/testinteractionhandler.hxx
index 3e8c810774cc..a8f4acc0fd67 100644
--- a/include/test/testinteractionhandler.hxx
+++ b/include/test/testinteractionhandler.hxx
@@ -41,9 +41,6 @@ public:
, mbPasswordRequested(false)
{}
- virtual ~TestInteractionHandler() override
- {}
-
bool wasPasswordRequested()
{
return mbPasswordRequested;
diff --git a/include/toolkit/controls/unocontrols.hxx b/include/toolkit/controls/unocontrols.hxx
index 4a8896b44ec6..84c602620fc2 100644
--- a/include/toolkit/controls/unocontrols.hxx
+++ b/include/toolkit/controls/unocontrols.hxx
@@ -543,7 +543,6 @@ private:
public:
UnoCheckBoxControl();
- virtual ~UnoCheckBoxControl() override {}
OUString GetComponentServiceName() override;
void SAL_CALL createPeer( const css::uno::Reference< css::awt::XToolkit >& Toolkit, const css::uno::Reference< css::awt::XWindowPeer >& Parent ) throw(css::uno::RuntimeException, std::exception) override;
diff --git a/include/tools/errinf.hxx b/include/tools/errinf.hxx
index 8d79815f5e1d..3a9af9a568b8 100644
--- a/include/tools/errinf.hxx
+++ b/include/tools/errinf.hxx
@@ -91,8 +91,6 @@ public:
const OUString & rTheArg2, sal_uInt16 nMask):
DynamicErrorInfo(nUserID, nMask), aArg1(rTheArg1), aArg2(rTheArg2) {}
- virtual ~TwoStringErrorInfo() override {}
-
const OUString& GetArg1() const { return aArg1; }
const OUString& GetArg2() const { return aArg2; }
};
diff --git a/include/tools/weakbase.h b/include/tools/weakbase.h
index f8c74283e3ad..bacde04eaf4b 100644
--- a/include/tools/weakbase.h
+++ b/include/tools/weakbase.h
@@ -84,8 +84,6 @@ public:
/** constructs a reference from another reference */
inline WeakReference( WeakReference< reference_type >&& rWeakRef );
- inline ~WeakReference();
-
/** returns true if the reference object is not null and still alive */
inline bool is() const;
diff --git a/include/tools/weakbase.hxx b/include/tools/weakbase.hxx
index 7b693cc73efc..bee866c190bf 100644
--- a/include/tools/weakbase.hxx
+++ b/include/tools/weakbase.hxx
@@ -55,11 +55,6 @@ inline WeakReference< reference_type >::WeakReference( WeakReference< reference_
}
template< class reference_type >
-inline WeakReference< reference_type >::~WeakReference()
-{
-}
-
-template< class reference_type >
inline bool WeakReference< reference_type >::is() const
{
return mpWeakConnection->mpReference != 0;
diff --git a/include/unotools/confignode.hxx b/include/unotools/confignode.hxx
index a59e30454a3c..217203f4c3e9 100644
--- a/include/unotools/confignode.hxx
+++ b/include/unotools/confignode.hxx
@@ -79,9 +79,6 @@ namespace utl
OConfigurationNode& operator=(const OConfigurationNode& _rSource);
OConfigurationNode& operator=(OConfigurationNode&& _rSource);
- /// dtor
- virtual ~OConfigurationNode() override {}
-
/// returns the local name of the node
OUString getLocalName() const;
diff --git a/toolkit/source/awt/stylesettings.cxx b/toolkit/source/awt/stylesettings.cxx
index 1ed728c4b485..3310c044c08b 100644
--- a/toolkit/source/awt/stylesettings.cxx
+++ b/toolkit/source/awt/stylesettings.cxx
@@ -87,10 +87,6 @@ namespace toolkit
throw DisposedException();
}
- ~StyleMethodGuard()
- {
- }
-
private:
SolarMutexGuard m_aGuard;
};
diff --git a/toolkit/source/awt/vclxwindow.cxx b/toolkit/source/awt/vclxwindow.cxx
index 9d862e26c0ec..8b4da17e05a3 100644
--- a/toolkit/source/awt/vclxwindow.cxx
+++ b/toolkit/source/awt/vclxwindow.cxx
@@ -186,8 +186,6 @@ public:
inline VclContainerListenerMultiplexer& getContainerListeners() { return maContainerListeners; }
inline TopWindowListenerMultiplexer& getTopWindowListeners() { return maTopWindowListeners; }
- ~VCLXWindowImpl();
-
private:
DECL_LINK( OnProcessCallbacks, void*, void );
};
@@ -223,11 +221,6 @@ VCLXWindowImpl::VCLXWindowImpl( VCLXWindow& _rAntiImpl, bool _bWithDefaultProps
{
}
-VCLXWindowImpl::~VCLXWindowImpl()
-{
-}
-
-
void VCLXWindowImpl::disposing()
{
SolarMutexGuard aGuard;
diff --git a/toolkit/source/controls/unocontrolcontainer.cxx b/toolkit/source/controls/unocontrolcontainer.cxx
index e53da45c3d9b..d752eb177b9a 100644
--- a/toolkit/source/controls/unocontrolcontainer.cxx
+++ b/toolkit/source/controls/unocontrolcontainer.cxx
@@ -73,7 +73,6 @@ private:
public:
UnoControlHolderList();
- ~UnoControlHolderList();
/** adds a control with the given name to the list
@param _rxControl
@@ -165,11 +164,6 @@ UnoControlHolderList::UnoControlHolderList()
}
-UnoControlHolderList::~UnoControlHolderList()
-{
-}
-
-
UnoControlHolderList::ControlIdentifier UnoControlHolderList::addControl( const uno::Reference< awt::XControl >& _rxControl, const OUString* _pName )
{
return impl_addControl( _rxControl, _pName );
diff --git a/ucb/source/ucp/cmis/cmis_datasupplier.hxx b/ucb/source/ucp/cmis/cmis_datasupplier.hxx
index de4903e4ae3e..2e3dd1ba272b 100644
--- a/ucb/source/ucp/cmis/cmis_datasupplier.hxx
+++ b/ucb/source/ucp/cmis/cmis_datasupplier.hxx
@@ -29,10 +29,6 @@ namespace cmis
explicit ResultListEntry( css::uno::Reference< css::ucb::XContent > const & xCnt ) : xContent( xCnt )
{
}
-
- ~ResultListEntry()
- {
- }
};
typedef std::vector< ResultListEntry* > ResultList;
diff --git a/ucb/source/ucp/ext/ucpext_datasupplier.cxx b/ucb/source/ucp/ext/ucpext_datasupplier.cxx
index 66907ac067be..ca437c51b2b5 100644
--- a/ucb/source/ucp/ext/ucpext_datasupplier.cxx
+++ b/ucb/source/ucp/ext/ucpext_datasupplier.cxx
@@ -83,15 +83,9 @@ namespace ucb { namespace ucp { namespace ext
,m_xContext( rxContext )
{
}
- ~DataSupplier_Impl();
};
- DataSupplier_Impl::~DataSupplier_Impl()
- {
- }
-
-
//= helper
namespace
diff --git a/ucb/source/ucp/webdav-neon/DAVException.hxx b/ucb/source/ucp/webdav-neon/DAVException.hxx
index c6f50a2733dc..3e1046ce2b5c 100644
--- a/ucb/source/ucp/webdav-neon/DAVException.hxx
+++ b/ucb/source/ucp/webdav-neon/DAVException.hxx
@@ -164,7 +164,6 @@ class DAVException : public std::exception
sal_uInt16 nStatusCode ) :
mExceptionCode( inExceptionCode ), mData( rData ),
mStatusCode( nStatusCode ) {};
- virtual ~DAVException() throw() override {};
const ExceptionCode & getError() const { return mExceptionCode; }
const OUString & getData() const { return mData; }
diff --git a/ucb/source/ucp/webdav-neon/LinkSequence.cxx b/ucb/source/ucp/webdav-neon/LinkSequence.cxx
index 4fff36833eaf..392584ebf5fc 100644
--- a/ucb/source/ucp/webdav-neon/LinkSequence.cxx
+++ b/ucb/source/ucp/webdav-neon/LinkSequence.cxx
@@ -45,7 +45,6 @@ struct LinkSequenceParseContext
LinkSequenceParseContext()
: pLink( nullptr ), hasSource( false ), hasDestination( false ) {}
- ~LinkSequenceParseContext() {}
};
#define STATE_TOP (1)
diff --git a/ucb/source/ucp/webdav-neon/LockEntrySequence.cxx b/ucb/source/ucp/webdav-neon/LockEntrySequence.cxx
index 7d3a839d5eec..70b0c0ccc916 100644
--- a/ucb/source/ucp/webdav-neon/LockEntrySequence.cxx
+++ b/ucb/source/ucp/webdav-neon/LockEntrySequence.cxx
@@ -44,7 +44,6 @@ struct LockEntrySequenceParseContext
LockEntrySequenceParseContext()
: pEntry( nullptr ), hasScope( false ), hasType( false ) {}
- ~LockEntrySequenceParseContext() { }
};
#define STATE_TOP (1)
diff --git a/ucb/source/ucp/webdav-neon/LockSequence.cxx b/ucb/source/ucp/webdav-neon/LockSequence.cxx
index 1598ed8c076a..b75db5a8b428 100644
--- a/ucb/source/ucp/webdav-neon/LockSequence.cxx
+++ b/ucb/source/ucp/webdav-neon/LockSequence.cxx
@@ -48,8 +48,6 @@ struct LockSequenceParseContext
LockSequenceParseContext()
: pLock( nullptr ), hasLockScope( false ), hasLockType( false ),
hasDepth( false ), hasHREF( false ), hasTimeout( false ) {}
-
- ~LockSequenceParseContext() {}
};
#define STATE_TOP (1)
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);