sd/source/ui/slideshow/SlideShowRestarter.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 71e72d9103add966c3fa950f9524e00b5a93648f Author: shlok3640 <[email protected]> AuthorDate: Sun Dec 7 10:34:13 2025 +0000 Commit: Mike Kaganski <[email protected]> CommitDate: Thu Dec 11 12:08:06 2025 +0100 tdf#165233 Replace std::bind with lambda in SlideShowRestarter Change-Id: I1c0028bb3506e3433798f674510045792b914180 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/195183 Tested-by: Jenkins Reviewed-by: Mike Kaganski <[email protected]> diff --git a/sd/source/ui/slideshow/SlideShowRestarter.cxx b/sd/source/ui/slideshow/SlideShowRestarter.cxx index 3cfa3ebfc70e..b479eec3e298 100644 --- a/sd/source/ui/slideshow/SlideShowRestarter.cxx +++ b/sd/source/ui/slideshow/SlideShowRestarter.cxx @@ -119,7 +119,7 @@ IMPL_LINK_NOARG(SlideShowRestarter, EndPresentation, void*, void) pHelper->RunOnConfigurationEvent( sd::framework::ConfigurationChangeEventType::ConfigurationUpdateEnd, - ::std::bind(&SlideShowRestarter::StartPresentation, shared_from_this())); + [self = shared_from_this()](bool) { self->StartPresentation(); }); pHelper->UpdateConfiguration(); } else
