From d72511eda923c827a6175bec9b8f24c237f82730 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 28 Sep 2021 10:59:43 +0200 Subject: gives names to all the Idles and Tasks enforce it by making the constructor parameter non-default. Change-Id: I321543e4dcf15ea0a43ad8cce91d2f8dc22df6ec Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122766 Tested-by: Jenkins Reviewed-by: Noel Grandin --- vcl/source/control/scrbar.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'vcl/source/control/scrbar.cxx') diff --git a/vcl/source/control/scrbar.cxx b/vcl/source/control/scrbar.cxx index 9a31a58fc4b3..87385872c0de 100644 --- a/vcl/source/control/scrbar.cxx +++ b/vcl/source/control/scrbar.cxx @@ -64,7 +64,7 @@ struct ImplScrollBarData { - AutoTimer maTimer; // Timer + AutoTimer maTimer { "vcl::ScrollBar mpData->maTimer" }; bool mbHide; }; @@ -1138,7 +1138,6 @@ void ScrollBar::GetFocus() { mpData.reset(new ImplScrollBarData); mpData->maTimer.SetInvokeHandler( LINK( this, ScrollBar, ImplAutoTimerHdl ) ); - mpData->maTimer.SetDebugName( "vcl::ScrollBar mpData->maTimer" ); mpData->mbHide = false; } ImplInvert(); // react immediately -- cgit