diff options
-rw-r--r-- | libreofficekit/source/gtk/lokdocview.cxx | 14 | ||||
-rw-r--r-- | vcl/source/graphic/Manager.cxx | 14 | ||||
-rw-r--r-- | vcl/source/uitest/uno/uiobject_uno.cxx | 4 | ||||
-rw-r--r-- | vcl/unx/gtk3_kde5/gtk3_kde5_filepicker_ipc.hxx | 2 |
4 files changed, 17 insertions, 17 deletions
diff --git a/libreofficekit/source/gtk/lokdocview.cxx b/libreofficekit/source/gtk/lokdocview.cxx index b55ca470e253..3f43a1487502 100644 --- a/libreofficekit/source/gtk/lokdocview.cxx +++ b/libreofficekit/source/gtk/lokdocview.cxx @@ -2186,7 +2186,7 @@ setGraphicSelectionInThread(gpointer data) LOKDocViewPrivate& priv = getPrivate(pDocView); LOEvent* pLOEvent = static_cast<LOEvent*>(g_task_get_task_data(task)); - std::lock_guard<std::mutex> aGuard(g_aLOKMutex); + std::scoped_lock<std::mutex> aGuard(g_aLOKMutex); std::stringstream ss; ss << "lok::Document::setView(" << priv->m_nViewId << ")"; g_info("%s", ss.str().c_str()); @@ -2210,7 +2210,7 @@ setClientZoomInThread(gpointer data) LOKDocViewPrivate& priv = getPrivate(pDocView); LOEvent* pLOEvent = static_cast<LOEvent*>(g_task_get_task_data(task)); - std::lock_guard<std::mutex> aGuard(g_aLOKMutex); + std::scoped_lock<std::mutex> aGuard(g_aLOKMutex); priv->m_pDocument->pClass->setClientZoom(priv->m_pDocument, pLOEvent->m_nTilePixelWidth, pLOEvent->m_nTilePixelHeight, @@ -2226,7 +2226,7 @@ postMouseEventInThread(gpointer data) LOKDocViewPrivate& priv = getPrivate(pDocView); LOEvent* pLOEvent = static_cast<LOEvent*>(g_task_get_task_data(task)); - std::lock_guard<std::mutex> aGuard(g_aLOKMutex); + std::scoped_lock<std::mutex> aGuard(g_aLOKMutex); std::stringstream ss; ss << "lok::Document::setView(" << priv->m_nViewId << ")"; g_info("%s", ss.str().c_str()); @@ -2255,7 +2255,7 @@ openDocumentInThread (gpointer data) LOKDocView* pDocView = LOK_DOC_VIEW(g_task_get_source_object(task)); LOKDocViewPrivate& priv = getPrivate(pDocView); - std::lock_guard<std::mutex> aGuard(g_aLOKMutex); + std::scoped_lock<std::mutex> aGuard(g_aLOKMutex); if ( priv->m_pDocument ) { priv->m_pDocument->pClass->destroy( priv->m_pDocument ); @@ -2306,7 +2306,7 @@ setPartmodeInThread(gpointer data) LOEvent* pLOEvent = static_cast<LOEvent*>(g_task_get_task_data(task)); int nPartMode = pLOEvent->m_nPartMode; - std::lock_guard<std::mutex> aGuard(g_aLOKMutex); + std::scoped_lock<std::mutex> aGuard(g_aLOKMutex); std::stringstream ss; ss << "lok::Document::setView(" << priv->m_nViewId << ")"; g_info("%s", ss.str().c_str()); @@ -2329,7 +2329,7 @@ setEditInThread(gpointer data) else if (priv->m_bEdit && !bEdit) { g_info("lok_doc_view_set_edit: leaving edit mode"); - std::lock_guard<std::mutex> aGuard(g_aLOKMutex); + std::scoped_lock<std::mutex> aGuard(g_aLOKMutex); std::stringstream ss; ss << "lok::Document::setView(" << priv->m_nViewId << ")"; g_info("%s", ss.str().c_str()); @@ -2349,7 +2349,7 @@ postCommandInThread (gpointer data) LOEvent* pLOEvent = static_cast<LOEvent*>(g_task_get_task_data(task)); LOKDocViewPrivate& priv = getPrivate(pDocView); - std::lock_guard<std::mutex> aGuard(g_aLOKMutex); + std::scoped_lock<std::mutex> aGuard(g_aLOKMutex); std::stringstream ss; ss << "lok::Document::setView(" << priv->m_nViewId << ")"; g_info("%s", ss.str().c_str()); diff --git a/vcl/source/graphic/Manager.cxx b/vcl/source/graphic/Manager.cxx index 7a03f85468dd..3ddec0ae280b 100644 --- a/vcl/source/graphic/Manager.cxx +++ b/vcl/source/graphic/Manager.cxx @@ -76,7 +76,7 @@ Manager::Manager() void Manager::reduceGraphicMemory() { - std::lock_guard<std::recursive_mutex> aGuard(maMutex); + std::scoped_lock<std::recursive_mutex> aGuard(maMutex); for (ImpGraphic* pEachImpGraphic : m_pImpGraphicList) { @@ -108,7 +108,7 @@ sal_Int64 Manager::getGraphicSizeBytes(const ImpGraphic* pImpGraphic) IMPL_LINK(Manager, SwapOutTimerHandler, Timer*, pTimer, void) { - std::lock_guard<std::recursive_mutex> aGuard(maMutex); + std::scoped_lock<std::recursive_mutex> aGuard(maMutex); pTimer->Stop(); reduceGraphicMemory(); @@ -118,7 +118,7 @@ IMPL_LINK(Manager, SwapOutTimerHandler, Timer*, pTimer, void) void Manager::registerGraphic(const std::shared_ptr<ImpGraphic>& pImpGraphic, OUString const& /*rsContext*/) { - std::lock_guard<std::recursive_mutex> aGuard(maMutex); + std::scoped_lock<std::recursive_mutex> aGuard(maMutex); // make some space first if (mnUsedSize > mnMemoryLimit) @@ -149,7 +149,7 @@ void Manager::registerGraphic(const std::shared_ptr<ImpGraphic>& pImpGraphic, void Manager::unregisterGraphic(ImpGraphic* pImpGraphic) { - std::lock_guard<std::recursive_mutex> aGuard(maMutex); + std::scoped_lock<std::recursive_mutex> aGuard(maMutex); mnUsedSize -= getGraphicSizeBytes(pImpGraphic); m_pImpGraphicList.erase(pImpGraphic); @@ -213,21 +213,21 @@ std::shared_ptr<ImpGraphic> Manager::newInstance(const GraphicExternalLink& rGra void Manager::swappedIn(const ImpGraphic* pImpGraphic) { - std::lock_guard<std::recursive_mutex> aGuard(maMutex); + std::scoped_lock<std::recursive_mutex> aGuard(maMutex); mnUsedSize += getGraphicSizeBytes(pImpGraphic); } void Manager::swappedOut(const ImpGraphic* pImpGraphic) { - std::lock_guard<std::recursive_mutex> aGuard(maMutex); + std::scoped_lock<std::recursive_mutex> aGuard(maMutex); mnUsedSize -= getGraphicSizeBytes(pImpGraphic); } void Manager::changeExisting(const ImpGraphic* pImpGraphic, sal_Int64 nOldSizeBytes) { - std::lock_guard<std::recursive_mutex> aGuard(maMutex); + std::scoped_lock<std::recursive_mutex> aGuard(maMutex); mnUsedSize -= nOldSizeBytes; mnUsedSize += getGraphicSizeBytes(pImpGraphic); diff --git a/vcl/source/uitest/uno/uiobject_uno.cxx b/vcl/source/uitest/uno/uiobject_uno.cxx index 0b68a5d1cbce..283970569a0e 100644 --- a/vcl/source/uitest/uno/uiobject_uno.cxx +++ b/vcl/source/uitest/uno/uiobject_uno.cxx @@ -28,7 +28,7 @@ UIObjectUnoObj::UIObjectUnoObj(std::unique_ptr<UIObject> pObj): UIObjectUnoObj::~UIObjectUnoObj() { { - std::lock_guard<std::mutex> lk3(mMutex); + std::scoped_lock<std::mutex> lk3(mMutex); } SolarMutexGuard aGuard; mpObj.reset(); @@ -46,7 +46,7 @@ css::uno::Reference<css::ui::test::XUIObject> SAL_CALL UIObjectUnoObj::getChild( IMPL_LINK_NOARG(UIObjectUnoObj, NotifyHdl, Timer*, void) { - std::lock_guard<std::mutex> lk(mMutex); + std::scoped_lock<std::mutex> lk(mMutex); mReady = true; cv.notify_all(); } diff --git a/vcl/unx/gtk3_kde5/gtk3_kde5_filepicker_ipc.hxx b/vcl/unx/gtk3_kde5/gtk3_kde5_filepicker_ipc.hxx index a9584b11fcd2..b1a8770c5165 100644 --- a/vcl/unx/gtk3_kde5/gtk3_kde5_filepicker_ipc.hxx +++ b/vcl/unx/gtk3_kde5/gtk3_kde5_filepicker_ipc.hxx @@ -108,7 +108,7 @@ public: while (true) { // only let one thread read at any given time - std::lock_guard<std::mutex> lock(m_mutex); + std::scoped_lock<std::mutex> lock(m_mutex); // check if we need to read (and potentially wait) a response ID if (m_incomingResponse == 0) |