diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-01-23 14:04:56 +0200 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-01-23 16:59:48 +0000 |
commit | a90a4810aeefbad270978ade194ced3b09d50449 (patch) | |
tree | 5545c4d42205a39a08ae085681ec8e04cb427cf5 /include/comphelper/accessiblecontexthelper.hxx | |
parent | 6d9e4803806d1474039e25092a3c1ee268b0b9f8 (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 'include/comphelper/accessiblecontexthelper.hxx')
-rw-r--r-- | include/comphelper/accessiblecontexthelper.hxx | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/include/comphelper/accessiblecontexthelper.hxx b/include/comphelper/accessiblecontexthelper.hxx index 1074d1e7138a..2143c7e2060a 100644 --- a/include/comphelper/accessiblecontexthelper.hxx +++ b/include/comphelper/accessiblecontexthelper.hxx @@ -274,11 +274,6 @@ namespace comphelper @precond <arg>_pContext</arg> != NULL */ inline OContextEntryGuard( OAccessibleContextHelper* _pContext ); - - /** destructs the guard. - <p>The context (it's mutex, respectively) is unlocked.</p> - */ - inline ~OContextEntryGuard(); }; @@ -289,11 +284,6 @@ namespace comphelper } - inline OContextEntryGuard::~OContextEntryGuard() - { - } - - //= OExternalLockGuard class OExternalLockGuard @@ -302,7 +292,6 @@ namespace comphelper { public: inline OExternalLockGuard( OAccessibleContextHelper* _pContext ); - inline ~OExternalLockGuard( ); }; @@ -318,11 +307,6 @@ namespace comphelper } - inline OExternalLockGuard::~OExternalLockGuard( ) - { - } - - } // namespace comphelper |