sd/source/ui/framework/tools/FrameworkHelper.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 965648f1821f4206805fa47fe5459dc26819ff17 Author: Simon Chenery <[email protected]> AuthorDate: Sat Oct 11 21:02:28 2025 +0200 Commit: David Gilbert <[email protected]> CommitDate: Thu Oct 16 17:00:17 2025 +0200 tdf#165233 replace std::bind with lambda in FrameworkHelper.cxx Change-Id: Idd487707435362d076b1ab8d935698daa1b7c726 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/192233 Tested-by: Jenkins Reviewed-by: David Gilbert <[email protected]> diff --git a/sd/source/ui/framework/tools/FrameworkHelper.cxx b/sd/source/ui/framework/tools/FrameworkHelper.cxx index e7a914c72c1c..c886d78da41c 100644 --- a/sd/source/ui/framework/tools/FrameworkHelper.cxx +++ b/sd/source/ui/framework/tools/FrameworkHelper.cxx @@ -580,7 +580,7 @@ void FrameworkHelper::HandleModeChangeSlot ( mxConfigurationController->requestResourceActivation( xId, ResourceActivationMode::REPLACE); - RunOnResourceActivation(xId, std::bind(&asyncUpdateEditMode, this, eEMode)); + RunOnResourceActivation(xId, [this, eEMode](bool) { asyncUpdateEditMode(this, eEMode); }); } else {
