summaryrefslogtreecommitdiffstats
path: root/include/dbaccess
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-11-08 08:13:11 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-11-08 06:57:57 +0000
commitc123c528bf1550e544b29e5a22a94a0452d5f349 (patch)
tree2dd015a5fe42b6c9b95302016674f3362478d295 /include/dbaccess
parenttdf#91222 VclBuilder constructor cleanup (diff)
downloadcore-c123c528bf1550e544b29e5a22a94a0452d5f349.tar.gz
core-c123c528bf1550e544b29e5a22a94a0452d5f349.zip
loplugin:unnecessaryvirtual in comphelper..forms
Change-Id: Iabe292e68cb84b97f207061347ed6a30309dc9fd Reviewed-on: https://gerrit.libreoffice.org/30679 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/dbaccess')
-rw-r--r--include/dbaccess/AsynchronousLink.hxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/dbaccess/AsynchronousLink.hxx b/include/dbaccess/AsynchronousLink.hxx
index 1f19469c8504..d8ca5b1d3610 100644
--- a/include/dbaccess/AsynchronousLink.hxx
+++ b/include/dbaccess/AsynchronousLink.hxx
@@ -36,11 +36,9 @@ namespace dbaui
event while another thread tries to delete this event in the _destructor_ of the
class).
*/
- class OAsynchronousLink
+ class OAsynchronousLink final
{
Link<void*,void> m_aHandler;
-
- protected:
::osl::Mutex m_aEventSafety;
::osl::Mutex m_aDestructionSafety;
ImplSVEvent * m_nEventId;
@@ -50,7 +48,7 @@ namespace dbaui
@param _rHandler The link to be called asynchronously
*/
OAsynchronousLink( const Link<void*,void>& _rHandler );
- virtual ~OAsynchronousLink();
+ ~OAsynchronousLink();
bool IsRunning() const { return m_nEventId != nullptr; }