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/android | |
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/android')
-rw-r--r-- | vcl/android/androidinst.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/android/androidinst.cxx b/vcl/android/androidinst.cxx index 3c181ace2ff6..7bf18338a3fe 100644 --- a/vcl/android/androidinst.cxx +++ b/vcl/android/androidinst.cxx @@ -197,7 +197,7 @@ SalInstance *CreateSalInstance() void DestroySalInstance( SalInstance *pInst ) { - pInst->ReleaseYieldMutex( true ); + pInst->ReleaseYieldMutexAll(); delete pInst; } |