summaryrefslogtreecommitdiff
path: root/vcl/ios
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-10-30 16:27:01 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-10-31 07:34:13 +0100
commit4cfcf965b5c95b1ba7dd454e9dda954e8315b8a9 (patch)
tree394c3c23ea9deeabcc7c3b1ac477f44b3a02a85d /vcl/ios
parent0d6b4f5f6946cdadfe2a09946df90fa08f3588d0 (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/ios')
-rw-r--r--vcl/ios/iosinst.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/ios/iosinst.cxx b/vcl/ios/iosinst.cxx
index afc1dc87be50..fd5647f154da 100644
--- a/vcl/ios/iosinst.cxx
+++ b/vcl/ios/iosinst.cxx
@@ -178,7 +178,7 @@ SalInstance *CreateSalInstance()
void DestroySalInstance( SalInstance *pInst )
{
- pInst->ReleaseYieldMutex( true );
+ pInst->ReleaseYieldMutexAll();
delete pInst;
}