diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-06-20 11:13:44 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-06-21 08:19:49 +0200 |
commit | 4c93de2c921b43193985c057b03e329d6dddc5d4 (patch) | |
tree | 3deccb18a9ebc941f7dcd3ff14780b8dcd9951f2 /vcl/headless | |
parent | ec665e3e898e733c9f602b21046079e569b58568 (diff) |
merge GenericSolarMutex and SolarMutex
Since nothing else is implementing the SolarMutex abstract class.
Change-Id: I2a41254af3e9c7534033cdd0bece9dd8e0258b9d
Reviewed-on: https://gerrit.libreoffice.org/56153
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/headless')
-rw-r--r-- | vcl/headless/svpinst.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/headless/svpinst.cxx b/vcl/headless/svpinst.cxx index 3b43c46aae36..22146014dbfc 100644 --- a/vcl/headless/svpinst.cxx +++ b/vcl/headless/svpinst.cxx @@ -360,7 +360,7 @@ sal_uInt32 SvpSalYieldMutex::doRelease(bool const bUnlockAll) { // read m_nCount before doRelease bool const isReleased(bUnlockAll || m_nCount == 1); - nCount = comphelper::GenericSolarMutex::doRelease( bUnlockAll ); + nCount = comphelper::SolarMutex::doRelease( bUnlockAll ); if (isReleased) { std::unique_lock<std::mutex> g(m_WakeUpMainMutex); m_wakeUpMain = true; |