diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-09-19 11:43:23 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-09-19 11:43:23 +0200 |
commit | 07fef83b20504890336fd146c558561dacf7e7e4 (patch) | |
tree | a022a7646bc46942105a4e2341c177d566e56b77 /vcl | |
parent | 136dc67fdef39d598d8063b2d73aefccbdc59ae2 (diff) |
loplugin:unnecessaryoverride
Change-Id: I37c338fd08df3dc102963ccffc65c1f0684653be
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/inc/osx/salinst.h | 4 | ||||
-rw-r--r-- | vcl/osx/salinst.cxx | 10 |
2 files changed, 0 insertions, 14 deletions
diff --git a/vcl/inc/osx/salinst.h b/vcl/inc/osx/salinst.h index ecff6207f5d7..f1598a4f1040 100644 --- a/vcl/inc/osx/salinst.h +++ b/vcl/inc/osx/salinst.h @@ -39,10 +39,6 @@ enum class SalEvent; class SalYieldMutex : public comphelper::GenericSolarMutex { -protected: - virtual void doAcquire( sal_uInt32 nLockCount ) override; - virtual sal_uInt32 doRelease( bool bUnlockAll ) override; - public: SalYieldMutex(); virtual ~SalYieldMutex() override; diff --git a/vcl/osx/salinst.cxx b/vcl/osx/salinst.cxx index aa274e8292f3..5e5415fef884 100644 --- a/vcl/osx/salinst.cxx +++ b/vcl/osx/salinst.cxx @@ -265,16 +265,6 @@ SalYieldMutex::~SalYieldMutex() { } -void SalYieldMutex::doAcquire( sal_uInt32 nLockCount ) -{ - comphelper::GenericSolarMutex::doAcquire( nLockCount ); -} - -sal_uInt32 SalYieldMutex::doRelease( const bool bUnlockAll ) -{ - return comphelper::GenericSolarMutex::doRelease( bUnlockAll ); -} - // some convenience functions regarding the yield mutex, aka solar mutex bool ImplSalYieldMutexTryToAcquire() |