diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-10-30 16:27:01 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-10-31 07:34:13 +0100 |
commit | 4cfcf965b5c95b1ba7dd454e9dda954e8315b8a9 (patch) | |
tree | 394c3c23ea9deeabcc7c3b1ac477f44b3a02a85d /vcl/osx | |
parent | 0d6b4f5f6946cdadfe2a09946df90fa08f3588d0 (diff) |
ReleaseYieldMutex is always called with true
so drop param and rename to ReleaseYieldMutexAll
Change-Id: Ic4fcee24d46405659e54363c87f21d88696b0ce1
Reviewed-on: https://gerrit.libreoffice.org/44057
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/osx')
-rw-r--r-- | vcl/osx/salinst.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/osx/salinst.cxx b/vcl/osx/salinst.cxx index 50623eac24aa..f9254d873227 100644 --- a/vcl/osx/salinst.cxx +++ b/vcl/osx/salinst.cxx @@ -410,9 +410,9 @@ comphelper::SolarMutex* AquaSalInstance::GetYieldMutex() return mpSalYieldMutex; } -sal_uInt32 AquaSalInstance::ReleaseYieldMutex( bool bUnlockAll ) +sal_uInt32 AquaSalInstance::ReleaseYieldMutexAll() { - return mpSalYieldMutex->release( bUnlockAll ); + return mpSalYieldMutex->release( true/*bUnlockAll*/ ); } void AquaSalInstance::AcquireYieldMutex( sal_uInt32 nCount ) |